xrandr says that my recently created mode is an unrecognized option when trying to add it to my moniterIssues 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
LWC and complex parameters
What do the Banks children have against barley water?
Could Giant Ground Sloths have been a good pack animal for the ancient Mayans?
Is it wise to focus on putting odd beats on left when playing double bass drums?
Pristine Bit Checking
Is this food a bread or a loaf?
Lied on resume at previous job
Can I legally use front facing blue light in the UK?
What to wear for invited talk in Canada
Is ipsum/ipsa/ipse a third person pronoun, or can it serve other functions?
Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore
"My colleague's body is amazing"
Why is the design of haulage companies so “special”?
COUNT(*) or MAX(id) - which is faster?
How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?
What does "enim et" mean?
Does the average primeness of natural numbers tend to zero?
Are objects structures and/or vice versa?
Are cabin dividers used to "hide" the flex of the airplane?
Domain expired, GoDaddy holds it and is asking more money
Is there a familial term for apples and pears?
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
Why is my log file so massive? 22gb. I am running log backups
How to make particles emit from certain parts of a 3D object?
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♦ 6 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♦ 6 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♦ 6 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♦ 6 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