ForceTextConsoleResolution: Difference between revisions
Jump to navigation
Jump to search
(Created page with "/etc/default/grub <pre> GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL_OUTPUT="con...") |
m (typo) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Our Lantronics Spider KVM resolution defaulted to 1600x1200. This isn't ideal on 1920x1080 displays. The following config sets the console resolution to 1024x768. | |||
/etc/default/grub | /etc/default/grub | ||
< | <syntaxhighlight lang=bash> | ||
GRUB_TIMEOUT=5 | GRUB_TIMEOUT=5 | ||
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" | GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" | ||
Line 14: | Line 15: | ||
GRUB_FONT_PATH="/boot/grub2/fonts/unicode.pf2" | GRUB_FONT_PATH="/boot/grub2/fonts/unicode.pf2" | ||
GRUB_GFXMODE="1024x768x32" | GRUB_GFXMODE="1024x768x32" | ||
</ | </syntaxhighlight> |
Latest revision as of 13:09, 26 February 2018
Our Lantronics Spider KVM resolution defaulted to 1600x1200. This isn't ideal on 1920x1080 displays. The following config sets the console resolution to 1024x768. /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="rd.lvm.lv=fedora_drew-serv/root rd.lvm.lv=fedora_drew-serv/swap nomodeset" # <---- nomodeset!!!!
GRUB_DISABLE_RECOVERY="true"
GRUB_GFXPAYLOAD="1024x768x32"
GRUB_GFXPAYLOAD_LINUX="1024x768x32"
GRUB_VIDEO_BACKEND="vbe"
GRUB_TERMINAL_OUTPUT="gfxterm"
GRUB_FONT_PATH="/boot/grub2/fonts/unicode.pf2"
GRUB_GFXMODE="1024x768x32"