ForceTextConsoleResolution: Difference between revisions

From DrewWiki
Jump to navigation Jump to search
m (added summary)
m (typo)
 
Line 1: Line 1:
Our Spyder KVM resolution defaulted to 1600x1200. This isn't ideal on 1920x1080 displays. The following config sets the console resolution to 1024x768.
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>
<syntaxhighlight lang=bash>

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"