Answers:
使用系统固定宽度字体选项通常相等并由设置 org.gnome.desktop.interface
。
要获取当前字体设置,请运行以下命令:
gsettings get org.gnome.desktop.interface monospace-font-name
要设置/更改设置,请运行以下命令(此处为增加大小的示例):
gsettings set org.gnome.desktop.interface monospace-font-name 'Ubuntu Mono 14'
当我运行上述命令时,我发现您的终端的字体已更改(大小增加了)!因此,gnome-terminal
使用该字体设置。
在这里,控制台仿真器已经有很多答案,因此,我仅关注tty虚拟控制台。您可以做cat /etc/default/console-setup
,找到说FONTFACE的行。或者,您可以grep -n FONTFACE /etc/default/console-setup
例如,这是我的控制台设置文件
要更改它,可以sudo dpkg-reconfigure console-setup
在tty中执行 。顺便说一下,这将更新内核设置。
fontface="fixed"
,而@Pandya的回答却给了我'Ubuntu Mono 13'
..不知道为什么会有区别吗?
您可以使用以下命令检查gnome终端字体
gconftool-2 --get /apps/gnome-terminal/profiles/Default/font
例如,它正在gnome-terminal使用此命令
[guru@guru-pc:~]$gconftool-2 --get /apps/gnome-terminal/profiles/Default/font
Monospace 12
如果要使用命令行更改字体,可以使用以下命令
gconftool-2 --set /apps/gnome-terminal/profiles/Default/font --type string "courier new 12"
其中12是字体大小。
No value set for '/apps/gnome-terminal/profiles/Default/font'
。但是,遵循Pandya的回答(gsettings
改为使用命令)实际上可以工作并返回Gnome终端字体。
ubuntu 16.04
Gnome的..不知道为什么没有工作..但Pandya'a
答案工作..
cat ~/.gconf/apps/gnome-terminal/profiles/Default/%gconf.xml
帮助的内容吗?