Configuring the TTY console font
Configuring the TTY console font
This is for the people that are old ;-), like me, or with 4K displays.
Font location
On Debian systems it should be: /usr/share/consolefonts On Arch Linux systems it should be: /usr/share/kbd/consolefonts
I’m always looking for something like this: UTF-8, Latin 1, Terminus, 14x28
Installation
In case Terminus font is not installed.
Debian
1
sudo apt install xfonts-terminus
Arch Linux
1
sudo pacman -S terminus-font
Configuration
Debian
1
setfont /usr/share/consolefonts/Lat15-Terminus28x14.psf.gz
Permanent:
1
dpkg-reconfigure console-setup
Or edit /etc/default/console-setup and restart.
1
2
3
4
CHARMAP="UTF-8"
CODESET="Lat15"
FONTFACE="Terminus"
FONTSIZE="14x28"
Arch Linux
1
setfont ter-132n
Permanent:
Edit /etc/vconsole.conf.
1
2
KEYMAP=de
FONT=ter-132n
Then restart systemd-service for vconsole.
1
sudo systemctl restart systemd-vconsole-setup.service
And restart for changes to take effect.
This post is licensed under CC BY 4.0 by the author.
