How to change font-size, number of rows / columns in the console

9,527

Add something like "vga=792" to the kernel line in your grub.conf file, usually located in /etc or /boot/grub:

title My Linux OS Name and Kernel Version Number
    root (hd0,0)
    kernel /boot/vmlinuz-1.2.3.4 ro root=/dev/hda1 quiet vga=792
    initrd /boot/initrd-1.2.3.4.img

You can say vga=ask instead to get a menu on boot, built from a probing process performed by the kernel to see which resolutions are likely to work. I find that there are often other numbers that will work that this method doesn't find.

This is all system-specific. Different video cards will have different supported modes, and kernel build options can open up or close off video mode options. The subsystem that deals with this is called the kernel framebuffer, so if you're compiling custom kernels, be careful not to remove the support your kernel needs to fully support your video card. Most cards can use the VESA FB driver, but another driver specific to your brand of card might open more options.

Also, beware that some parts of this subsystem use hex numbers, and others decimal. You can do the conversion to decimal, as I've done, or you can say something like "vga=0x318" instead.

Share:
9,527

Related videos on Youtube

phoenix24
Author by

phoenix24

Updated on September 17, 2022

Comments

  • phoenix24
    phoenix24 over 1 year

    I'm running a Linux server without X11 or any kind of GUI, with a modern 22" LCD monitor.

    Given the huge size of my monitor, I would like to increase the number of rows and columns in my console, how can I go about achieving it?

  • xenoterracide
    xenoterracide over 13 years
    This system is good... but you might want to check to see if your video chip supports KMS (most common in Intel, and ATI, but I won't say it's not in others) if it does you should try enabling it at boot, it will autoresize your VT.