0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

debianでコンソールのフォントを変更する

Posted at

はじめに

VMWareのVMや物理マシンのttyでフォントや文字サイズを変更する方法についてです。

注意

VMのttyのフォントが変更されるため、SSH接続などのptyのフォントは変更されません。
そちらは各々のターミナルソフトで調整してください。

対象OS

  • Debian GNU/Linux
  • その他Debian系Linux

方法① dpkg-reconfigureを使う

dpkg-reconfigure console-setup

encoding、charset、font、font sizeの順に対話的に聞かれるのでお好みのものを選択してください。

方法② 設定ファイルを編集する

vim /etc/default/console-setup
/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="Lat15"
FONTFACE="TerminusBold"
FONTSIZE="11x22"

VIDEOMODE=

# The following is an example how to use a braille font
# FONT='lat9w-08.psf.gz brl-8x8.psf'

FONTFACE、FONTSIZEをお好みで変更してください。(上記のものは私が使用しているもの)

変更後、以下を実行。

systemctl restart console-setup.service
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?