How to configure Ubuntu 22.04 to boot in console/text mode only and have an 80-column x 25-row full screen? This is for a legacy application
Running: sudo systemctl set-default multi-user.target does get the system to boot in console mode but without changing the resolution.
I have tried editing 2 lines in /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="text nomodeset"
GRUB_TERMINAL=console
I have tried editing /etc/default/console-setup
# CONFIGURATION FILE FOR SETUPCON
# Consult the console-setup(5) manual page.
ACTIVE_CONSOLES="/dev/tty[1-6]"
CHARMAP="UTF-8"
CODESET="guess"
#FONTFACE="Fixed"
#FONTSIZE="8x16"
FONTFACE="TerminusBoldVGA"
FONTSIZE="8x14"
VIDEOMODE=
The following is an example of how to use a braille font
FONT='lat9w-08.psf.gz brl-8x8.psf'
Neither of these modifications makes any difference in the screen resolution.
Thank you in advance for your help Charlie
/etc/default/console-setup
is where it needs to happen, and the options will be rather limited. – vanadium Oct 12 '22 at 16:24