How to change the resolution of the TTY on Arch Linux

28,993

Solution 1

You can choose resolution editing GRUB configuration file /etc/default/grub

GRUB_GFXMODE=1024x768x32

Also check this parameter to allow the kernel use the same resolution used by grub:

GRUB_GFXPAYLOAD_LINUX=keep

Than run following command in Arch to activate changes:

# grub-mkconfig -o /boot/grub/grub.cfg

See GRUB documentation

Solution 2

You need to set up your framebuffer: https://wiki.archlinux.org/index.php/Uvesafb

Share:
28,993

Related videos on Youtube

eichoa3I
Author by

eichoa3I

Updated on September 18, 2022

Comments

  • eichoa3I
    eichoa3I almost 2 years

    I followed the Arch beginner's wiki to install on VMWare player (host is Windows 7) Arch without x-server and I would like to know how I can change the resolution of what I think is called the TTY to make the VMWare window fit better on my desktop. Currently it takes about 80% of my 1600x900 resolution. I'd like for it to look like a normal open console window.

    • blah
      blah over 11 years
      An ugly workaround is to install openssh, start it via systemctl enable sshd.service, and connect to it using PuTTY.
    • lmcanavals
      lmcanavals over 11 years
      Take a look at wiki.archlinux.org/index.php/… if you are using grub (2) I'm not sure if it'll work though.
  • lzam
    lzam about 9 years
    Welcome to Super User. You may want to improve your answer by summarizing the posts you are linking to. This helps protect against link rot, and will make your answer more useful.
  • Alpheus
    Alpheus about 9 years
    Okay, thanks. I'll edit the answer as soon as I'm at a computer.
  • Michal Štein
    Michal Štein about 5 years
    Very helpful for a person that uses Syslinux. :)