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. :<
grub2 18.04
add a comment |
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. :<
grub2 18.04
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
add a comment |
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. :<
grub2 18.04
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
grub2 18.04
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
add a comment |
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
add a comment |
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.
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 27 at 23:07
linux64kb
550512
550512
add a comment |
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.
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.
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%2f1079245%2fubuntu-server-bionic-beaver-non-graphical-change-resolution%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
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