Results 1 to 4 of 4

Thread: [SOLVED] Console Font Size

  1. #1
    Join Date
    Apr 2006
    Beans
    15

    [SOLVED] Console Font Size

    I've been away from the faith for a bit and have forgotten one or two things. First amung those is how to change the font size in the console (As in ALT+Fn). The Ubuntu Default is huge and ungainly. Any thoughts on how to fix that?

  2. #2
    Join Date
    Feb 2008
    Location
    Townsville, Qld Australia
    Beans
    1,065

    Re: Console Font Size

    I believe what you need to go is add something like VGA=791 to the grub boot option associated with the kernel you are booting. This has alternate modes you could use: http://www.mepis.org/node/2992
    Registered Linux User #464572
    journal.ryanhaigh.net
    www.ryanhaigh.net

  3. #3
    Join Date
    Jun 2007
    Location
    Melbourne, Australia
    Beans
    1,171

    Re: Console Font Size

    Try adding a vga=791 or similar setting to your kernel boot options in /boot/grub/menu.lst and then reboot.

    Code:
    gksudo gedit /boot/grub/menu.lst
    Then look for this section:
    Code:
    ## additional options to use with the default boot option, but not with the
    ## alternatives
    ## e.g. defoptions=vga=791 resume=/dev/hda5
    # defoptions=quiet splash
    And change it to:
    Code:
    ## additional options to use with the default boot option, but not with the
    ## alternatives
    ## e.g. defoptions=vga=791 resume=/dev/hda5
    # defoptions=quiet splash vga=791
    Now save and close gedit, then run:
    Code:
    sudo update-grub
    And reboot.

    The only reason I suggest using 'update-grub' and editing the defoptions is so that any new kernels that are installed will be autoconfigured with the option. You could simply append it to the kernel entry at the bottom of the file, if you so chose.

  4. #4
    Join Date
    Apr 2006
    Beans
    15

    Re: Console Font Size

    that did it, thanks.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •