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;








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'










share|improve this question
















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.





















    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'










    share|improve this question
















    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.

















      0












      0








      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'










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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.






















          1 Answer
          1






          active

          oldest

          votes


















          0














          The problem is with your last command.



          • Detect you monitor name with xrandr | grep " connected " | awk ' print$1 ' and replace it for the Screen option.

          • Don't use 0 - you don't need that.

          So the command would look like this:



          xrandr --addmode MonitorName 1080p





          share|improve this answer























          • 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












          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
          );



          );













          draft saved

          draft discarded


















          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









          0














          The problem is with your last command.



          • Detect you monitor name with xrandr | grep " connected " | awk ' print$1 ' and replace it for the Screen option.

          • Don't use 0 - you don't need that.

          So the command would look like this:



          xrandr --addmode MonitorName 1080p





          share|improve this answer























          • 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
















          0














          The problem is with your last command.



          • Detect you monitor name with xrandr | grep " connected " | awk ' print$1 ' and replace it for the Screen option.

          • Don't use 0 - you don't need that.

          So the command would look like this:



          xrandr --addmode MonitorName 1080p





          share|improve this answer























          • 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














          0












          0








          0







          The problem is with your last command.



          • Detect you monitor name with xrandr | grep " connected " | awk ' print$1 ' and replace it for the Screen option.

          • Don't use 0 - you don't need that.

          So the command would look like this:



          xrandr --addmode MonitorName 1080p





          share|improve this answer













          The problem is with your last command.



          • Detect you monitor name with xrandr | grep " connected " | awk ' print$1 ' and replace it for the Screen option.

          • Don't use 0 - you don't need that.

          So the command would look like this:



          xrandr --addmode MonitorName 1080p






          share|improve this answer












          share|improve this answer



          share|improve this answer










          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


















          • 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


















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

          Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

          Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»