Last active
August 29, 2015 13:56
-
-
Save jonforums/8873024 to your computer and use it in GitHub Desktop.
Arch and Ubuntu Server client VM increased console size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo vim /etc/default/grub | |
GRUB_GFXMODE=1024x768x24 | |
sudo grub-mkconfig -o /boot/grub/grub.cfg | |
sudo vim /etc/vconsole.conf | |
KEYMAP='us' | |
FONT='Lat15-TerminusBold24x12' | |
# ensure Lat15-TerminusBold24x12 is in /usr/share/kbd/consolefonts | |
sudo vim /etc/mkinitcpio.conf | |
HOOKS='base udev ... consolefont keymap' | |
sudo mkinitcpio -p linux | |
sudo reboot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo vim /etc/default/grub | |
GRUB_GFXMODE=1024x768x24 | |
sudo update-grub | |
sudo vim /etc/default/console-setup | |
FONTFACE="TerminusBold" | |
FONTSIZE="24x12" | |
sudo cp /usr/share/consolefonts/Lat15-TerminusBold24x12.psf.gz /etc/console-setup | |
cd /etc/console-setup | |
sudo gzip -d Lat15-TerminusBold24x12.psf.gz | |
sudo update-initramfs -u | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment