xrandr says that my recently created mode is an unrecognized option when trying to add it to my moniterIssues...
What is the offset in a seaplane's hull?
Information to fellow intern about hiring?
Symmetry in quantum mechanics
"My colleague's body is amazing"
What is the meaning of "of trouble" in the following sentence?
Is domain driven design an anti-SQL pattern?
What does "enim et" mean?
Does it makes sense to buy a new cycle to learn riding?
Can the Produce Flame cantrip be used to grapple, or as an unarmed strike, in the right circumstances?
Where else does the Shulchan Aruch quote an authority by name?
Is every set a filtered colimit of finite sets?
Piano - What is the notation for a double stop where both notes in the double stop are different lengths?
Could a US political party gain complete control over the government by removing checks & balances?
Is it wise to focus on putting odd beats on left when playing double bass drums?
"listening to me about as much as you're listening to this pole here"
Ideas for 3rd eye abilities
What do you call words made from common English words?
Is "plugging out" electronic devices an American expression?
What does it exactly mean if a random variable follows a distribution
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
Why doesn't a const reference extend the life of a temporary object passed via a function?
aging parents with no investments
I see my dog run
Is this food a bread or a loaf?
xrandr says that my recently created mode is an unrecognized option when trying to add it to my moniter
Issues with 11.10 display resolutionUnable to change the refresh rate to 60hz with xrandrUbuntu 14.04 Unknown Display, nvidia graphicsPython NameError: global name 'resolution' is not definedCan't add Custom ResolutionCant get HD resolution working on second monitor, nvidia GT640 card, Ubuntu 14.04How to make video resolution setting permanent?Stuck at 800x600 display resolution Ubuntu 14Ubuntu 16.04 resolution stuck at 4k16.04 Display resolution changed itself without an upgrade/update and can't get it back
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
my moniter is actually a small tv and does in fact support 1080p although currently uibuntu says that the highest i can go up to is 1360x768. created a mode named 1080p that i can see when using command "xrandr" that does in fact have the correct resolution although im not sure if im just doing some thing stupid cuz this is my first real install not on a vm.
what ive done so far:
1: cvt 1920 1080 60
2: xrandr --newmode "1080p"
(I copied the modeline) produced by cvt i can now see my mode when i use xrandr
3: xrandr --addmode Screen 0 1080p
OUTPUT: xrandr: unrecognized option '1080p'
nvidia display xrandr display-resolution
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
my moniter is actually a small tv and does in fact support 1080p although currently uibuntu says that the highest i can go up to is 1360x768. created a mode named 1080p that i can see when using command "xrandr" that does in fact have the correct resolution although im not sure if im just doing some thing stupid cuz this is my first real install not on a vm.
what ive done so far:
1: cvt 1920 1080 60
2: xrandr --newmode "1080p"
(I copied the modeline) produced by cvt i can now see my mode when i use xrandr
3: xrandr --addmode Screen 0 1080p
OUTPUT: xrandr: unrecognized option '1080p'
nvidia display xrandr display-resolution
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
my moniter is actually a small tv and does in fact support 1080p although currently uibuntu says that the highest i can go up to is 1360x768. created a mode named 1080p that i can see when using command "xrandr" that does in fact have the correct resolution although im not sure if im just doing some thing stupid cuz this is my first real install not on a vm.
what ive done so far:
1: cvt 1920 1080 60
2: xrandr --newmode "1080p"
(I copied the modeline) produced by cvt i can now see my mode when i use xrandr
3: xrandr --addmode Screen 0 1080p
OUTPUT: xrandr: unrecognized option '1080p'
nvidia display xrandr display-resolution
my moniter is actually a small tv and does in fact support 1080p although currently uibuntu says that the highest i can go up to is 1360x768. created a mode named 1080p that i can see when using command "xrandr" that does in fact have the correct resolution although im not sure if im just doing some thing stupid cuz this is my first real install not on a vm.
what ive done so far:
1: cvt 1920 1080 60
2: xrandr --newmode "1080p"
(I copied the modeline) produced by cvt i can now see my mode when i use xrandr
3: xrandr --addmode Screen 0 1080p
OUTPUT: xrandr: unrecognized option '1080p'
nvidia display xrandr display-resolution
nvidia display xrandr display-resolution
edited Dec 9 '15 at 11:47
TellMeWhy
8,0912069120
8,0912069120
asked Dec 9 '15 at 7:24
NebulousFoxNebulousFox
112
112
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 5 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The problem is with your last command.
- Detect you monitor name with
xrandr | grep " connected " | awk '{ print$1 }'
and replace it for theScreen
option. - Don't use
0
- you don't need that.
So the command would look like this:
xrandr --addmode MonitorName 1080p
It now gives me this evan@Neb:~$ xrandr | grep " connected " | awk '{ print$1 }' HDMI-0 evan@Neb:~$ xrandr --addmode HDMI-0 1080p X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46
– NebulousFox
Dec 9 '15 at 22:06
i also just tried straight up xrandr -s 1080p and the output was size index is too large there are only 9 sizes.
– NebulousFox
Dec 9 '15 at 23:44
@NebulousFox unfortunately there isn't a solution to that error... I'm in the progress of finding out why it happens and what can fix it - if I do find a solution, I'll tell you =)
– TellMeWhy
Jan 7 '16 at 15:19
alright haha sounds good thank you. and by the way how do you comment with the formatting for displaying code the way you did?
– NebulousFox
Jan 12 '16 at 20:03
@NebulousFox you can use ``, <pre></pre> or indent your code by 4 spaces
– TellMeWhy
Jan 13 '16 at 11:06
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f707630%2fxrandr-says-that-my-recently-created-mode-is-an-unrecognized-option-when-trying%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The problem is with your last command.
- Detect you monitor name with
xrandr | grep " connected " | awk '{ print$1 }'
and replace it for theScreen
option. - Don't use
0
- you don't need that.
So the command would look like this:
xrandr --addmode MonitorName 1080p
It now gives me this evan@Neb:~$ xrandr | grep " connected " | awk '{ print$1 }' HDMI-0 evan@Neb:~$ xrandr --addmode HDMI-0 1080p X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46
– NebulousFox
Dec 9 '15 at 22:06
i also just tried straight up xrandr -s 1080p and the output was size index is too large there are only 9 sizes.
– NebulousFox
Dec 9 '15 at 23:44
@NebulousFox unfortunately there isn't a solution to that error... I'm in the progress of finding out why it happens and what can fix it - if I do find a solution, I'll tell you =)
– TellMeWhy
Jan 7 '16 at 15:19
alright haha sounds good thank you. and by the way how do you comment with the formatting for displaying code the way you did?
– NebulousFox
Jan 12 '16 at 20:03
@NebulousFox you can use ``, <pre></pre> or indent your code by 4 spaces
– TellMeWhy
Jan 13 '16 at 11:06
add a comment |
The problem is with your last command.
- Detect you monitor name with
xrandr | grep " connected " | awk '{ print$1 }'
and replace it for theScreen
option. - Don't use
0
- you don't need that.
So the command would look like this:
xrandr --addmode MonitorName 1080p
It now gives me this evan@Neb:~$ xrandr | grep " connected " | awk '{ print$1 }' HDMI-0 evan@Neb:~$ xrandr --addmode HDMI-0 1080p X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46
– NebulousFox
Dec 9 '15 at 22:06
i also just tried straight up xrandr -s 1080p and the output was size index is too large there are only 9 sizes.
– NebulousFox
Dec 9 '15 at 23:44
@NebulousFox unfortunately there isn't a solution to that error... I'm in the progress of finding out why it happens and what can fix it - if I do find a solution, I'll tell you =)
– TellMeWhy
Jan 7 '16 at 15:19
alright haha sounds good thank you. and by the way how do you comment with the formatting for displaying code the way you did?
– NebulousFox
Jan 12 '16 at 20:03
@NebulousFox you can use ``, <pre></pre> or indent your code by 4 spaces
– TellMeWhy
Jan 13 '16 at 11:06
add a comment |
The problem is with your last command.
- Detect you monitor name with
xrandr | grep " connected " | awk '{ print$1 }'
and replace it for theScreen
option. - Don't use
0
- you don't need that.
So the command would look like this:
xrandr --addmode MonitorName 1080p
The problem is with your last command.
- Detect you monitor name with
xrandr | grep " connected " | awk '{ print$1 }'
and replace it for theScreen
option. - Don't use
0
- you don't need that.
So the command would look like this:
xrandr --addmode MonitorName 1080p
answered Dec 9 '15 at 11:52
TellMeWhyTellMeWhy
8,0912069120
8,0912069120
It now gives me this evan@Neb:~$ xrandr | grep " connected " | awk '{ print$1 }' HDMI-0 evan@Neb:~$ xrandr --addmode HDMI-0 1080p X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46
– NebulousFox
Dec 9 '15 at 22:06
i also just tried straight up xrandr -s 1080p and the output was size index is too large there are only 9 sizes.
– NebulousFox
Dec 9 '15 at 23:44
@NebulousFox unfortunately there isn't a solution to that error... I'm in the progress of finding out why it happens and what can fix it - if I do find a solution, I'll tell you =)
– TellMeWhy
Jan 7 '16 at 15:19
alright haha sounds good thank you. and by the way how do you comment with the formatting for displaying code the way you did?
– NebulousFox
Jan 12 '16 at 20:03
@NebulousFox you can use ``, <pre></pre> or indent your code by 4 spaces
– TellMeWhy
Jan 13 '16 at 11:06
add a comment |
It now gives me this evan@Neb:~$ xrandr | grep " connected " | awk '{ print$1 }' HDMI-0 evan@Neb:~$ xrandr --addmode HDMI-0 1080p X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46
– NebulousFox
Dec 9 '15 at 22:06
i also just tried straight up xrandr -s 1080p and the output was size index is too large there are only 9 sizes.
– NebulousFox
Dec 9 '15 at 23:44
@NebulousFox unfortunately there isn't a solution to that error... I'm in the progress of finding out why it happens and what can fix it - if I do find a solution, I'll tell you =)
– TellMeWhy
Jan 7 '16 at 15:19
alright haha sounds good thank you. and by the way how do you comment with the formatting for displaying code the way you did?
– NebulousFox
Jan 12 '16 at 20:03
@NebulousFox you can use ``, <pre></pre> or indent your code by 4 spaces
– TellMeWhy
Jan 13 '16 at 11:06
It now gives me this evan@Neb:~$ xrandr | grep " connected " | awk '{ print$1 }' HDMI-0 evan@Neb:~$ xrandr --addmode HDMI-0 1080p X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46
– NebulousFox
Dec 9 '15 at 22:06
It now gives me this evan@Neb:~$ xrandr | grep " connected " | awk '{ print$1 }' HDMI-0 evan@Neb:~$ xrandr --addmode HDMI-0 1080p X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 140 (RANDR) Minor opcode of failed request: 18 (RRAddOutputMode) Serial number of failed request: 45 Current serial number in output stream: 46
– NebulousFox
Dec 9 '15 at 22:06
i also just tried straight up xrandr -s 1080p and the output was size index is too large there are only 9 sizes.
– NebulousFox
Dec 9 '15 at 23:44
i also just tried straight up xrandr -s 1080p and the output was size index is too large there are only 9 sizes.
– NebulousFox
Dec 9 '15 at 23:44
@NebulousFox unfortunately there isn't a solution to that error... I'm in the progress of finding out why it happens and what can fix it - if I do find a solution, I'll tell you =)
– TellMeWhy
Jan 7 '16 at 15:19
@NebulousFox unfortunately there isn't a solution to that error... I'm in the progress of finding out why it happens and what can fix it - if I do find a solution, I'll tell you =)
– TellMeWhy
Jan 7 '16 at 15:19
alright haha sounds good thank you. and by the way how do you comment with the formatting for displaying code the way you did?
– NebulousFox
Jan 12 '16 at 20:03
alright haha sounds good thank you. and by the way how do you comment with the formatting for displaying code the way you did?
– NebulousFox
Jan 12 '16 at 20:03
@NebulousFox you can use ``, <pre></pre> or indent your code by 4 spaces
– TellMeWhy
Jan 13 '16 at 11:06
@NebulousFox you can use ``, <pre></pre> or indent your code by 4 spaces
– TellMeWhy
Jan 13 '16 at 11:06
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f707630%2fxrandr-says-that-my-recently-created-mode-is-an-unrecognized-option-when-trying%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown