Only throwing out some suggestions. Install hwinfo
and run:
su -c 'hwinfo --framebuffer'
# Or
sudo hwinfo --framebuffer
...
Mode 0x0343: 1400x1050 (+1408), 8 bits
Mode 0x0345: 1400x1050 (+2816), 16 bits
Mode 0x0346: 1400x1050 (+5632), 24 bits
...
Or use vbeinfo
if you are in GRUB cli environment.
Update kernel entry in GRUB by
kernel /boot/vmlinuz ... vga=0x0346
Or in
/etc/default/grub
GRUB_GFXMODE=2560x1440x24
GRUB_GFXPAYLOAD_LINUX=keep
# And / or perhaps
GRUB_CMDLINE_LINUX="vga=0x038f"
Where x24 is bits
from hwinfo
aka depth - not needed, but...
http://www.gnu.org/software/grub/manual/html_node/Simple-configuration.html#Simple-configuration
# Can also try to use res instead of keep
GRUB_GFXPAYLOAD_LINUX=2560x1440
If it does not work then perhaps add vga=0x0abc
to
GRUB_CMDLINE_LINUX_DEFAULT
Using proprietary nVidia drivers you might have to install v86d
and add video option to GRUB_CMDLINE_LINUX_DEFAULT
. Something in the lines of video=uvesafb:mode_option ...
You might also want to look at setupcon -f
for font by configuration file perhaps at cat /etc/default/console-setup
. man setupcon