Ubuntu Server Bionic Beaver non-graphical change resolution











up vote
1
down vote

favorite












I'm trying to change the resolution of my ubuntu server. sadly all tutorials seem to be doing it by using xrandr which tells me "can't open display" since i'm using the non-graphical version.



I also tried editing the /etc/default/grub file by adding



GRUB_GFXMODE=1152x864x32
GRUB_GFXPAYLOAD_LINUX=keep


followed by sudo update-grub
Sadly this does nothing to change my resolution. :<










share|improve this question






















  • did you reboot after the update? you have a monitor connected to your server or are sshing in?
    – Joshua Besneatte
    Sep 28 at 15:20















up vote
1
down vote

favorite












I'm trying to change the resolution of my ubuntu server. sadly all tutorials seem to be doing it by using xrandr which tells me "can't open display" since i'm using the non-graphical version.



I also tried editing the /etc/default/grub file by adding



GRUB_GFXMODE=1152x864x32
GRUB_GFXPAYLOAD_LINUX=keep


followed by sudo update-grub
Sadly this does nothing to change my resolution. :<










share|improve this question






















  • did you reboot after the update? you have a monitor connected to your server or are sshing in?
    – Joshua Besneatte
    Sep 28 at 15:20













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I'm trying to change the resolution of my ubuntu server. sadly all tutorials seem to be doing it by using xrandr which tells me "can't open display" since i'm using the non-graphical version.



I also tried editing the /etc/default/grub file by adding



GRUB_GFXMODE=1152x864x32
GRUB_GFXPAYLOAD_LINUX=keep


followed by sudo update-grub
Sadly this does nothing to change my resolution. :<










share|improve this question













I'm trying to change the resolution of my ubuntu server. sadly all tutorials seem to be doing it by using xrandr which tells me "can't open display" since i'm using the non-graphical version.



I also tried editing the /etc/default/grub file by adding



GRUB_GFXMODE=1152x864x32
GRUB_GFXPAYLOAD_LINUX=keep


followed by sudo update-grub
Sadly this does nothing to change my resolution. :<







grub2 18.04






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Sep 28 at 14:31









mrmagin

61




61












  • did you reboot after the update? you have a monitor connected to your server or are sshing in?
    – Joshua Besneatte
    Sep 28 at 15:20


















  • did you reboot after the update? you have a monitor connected to your server or are sshing in?
    – Joshua Besneatte
    Sep 28 at 15:20
















did you reboot after the update? you have a monitor connected to your server or are sshing in?
– Joshua Besneatte
Sep 28 at 15:20




did you reboot after the update? you have a monitor connected to your server or are sshing in?
– Joshua Besneatte
Sep 28 at 15:20










1 Answer
1






active

oldest

votes

















up vote
0
down vote













Modify / add the following lines to /etc/default/grub to match the ones below




GRUB_CMDLINE_LINUX_DEFAULT="video=<your_video_mode> gfxpayload=true"
GRUB_CMDLINE_LINUX="video=<your_video_mode> gfxpayload=true"
...
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=<resolution_needed>
GRUB_GFXPAYLOAD=<resolution_needed>
GRUB_GFXPAYLOAD_LINUX=<resolution_needed>



Run update-grub



sudo update-grub


Reboot



sudo reboot


You can find more information here.






share|improve this answer





















    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',
    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%2f1079245%2fubuntu-server-bionic-beaver-non-graphical-change-resolution%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








    up vote
    0
    down vote













    Modify / add the following lines to /etc/default/grub to match the ones below




    GRUB_CMDLINE_LINUX_DEFAULT="video=<your_video_mode> gfxpayload=true"
    GRUB_CMDLINE_LINUX="video=<your_video_mode> gfxpayload=true"
    ...
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=<resolution_needed>
    GRUB_GFXPAYLOAD=<resolution_needed>
    GRUB_GFXPAYLOAD_LINUX=<resolution_needed>



    Run update-grub



    sudo update-grub


    Reboot



    sudo reboot


    You can find more information here.






    share|improve this answer

























      up vote
      0
      down vote













      Modify / add the following lines to /etc/default/grub to match the ones below




      GRUB_CMDLINE_LINUX_DEFAULT="video=<your_video_mode> gfxpayload=true"
      GRUB_CMDLINE_LINUX="video=<your_video_mode> gfxpayload=true"
      ...
      # The resolution used on graphical terminal
      # note that you can use only modes which your graphic card supports via VBE
      # you can see them in real GRUB with the command `vbeinfo'
      GRUB_GFXMODE=<resolution_needed>
      GRUB_GFXPAYLOAD=<resolution_needed>
      GRUB_GFXPAYLOAD_LINUX=<resolution_needed>



      Run update-grub



      sudo update-grub


      Reboot



      sudo reboot


      You can find more information here.






      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote









        Modify / add the following lines to /etc/default/grub to match the ones below




        GRUB_CMDLINE_LINUX_DEFAULT="video=<your_video_mode> gfxpayload=true"
        GRUB_CMDLINE_LINUX="video=<your_video_mode> gfxpayload=true"
        ...
        # The resolution used on graphical terminal
        # note that you can use only modes which your graphic card supports via VBE
        # you can see them in real GRUB with the command `vbeinfo'
        GRUB_GFXMODE=<resolution_needed>
        GRUB_GFXPAYLOAD=<resolution_needed>
        GRUB_GFXPAYLOAD_LINUX=<resolution_needed>



        Run update-grub



        sudo update-grub


        Reboot



        sudo reboot


        You can find more information here.






        share|improve this answer












        Modify / add the following lines to /etc/default/grub to match the ones below




        GRUB_CMDLINE_LINUX_DEFAULT="video=<your_video_mode> gfxpayload=true"
        GRUB_CMDLINE_LINUX="video=<your_video_mode> gfxpayload=true"
        ...
        # The resolution used on graphical terminal
        # note that you can use only modes which your graphic card supports via VBE
        # you can see them in real GRUB with the command `vbeinfo'
        GRUB_GFXMODE=<resolution_needed>
        GRUB_GFXPAYLOAD=<resolution_needed>
        GRUB_GFXPAYLOAD_LINUX=<resolution_needed>



        Run update-grub



        sudo update-grub


        Reboot



        sudo reboot


        You can find more information here.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 27 at 23:07









        linux64kb

        550512




        550512






























            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f1079245%2fubuntu-server-bionic-beaver-non-graphical-change-resolution%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

            Quarter-circle Tiles

            build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

            Mont Emei