从 Ubuntu 11.10 升级到 12.04。使用 11.10 时,我的字体损坏了。我希望使用 12.04 摆脱这些损坏的字体,但问题变得更糟了。有什么解决办法吗?
答案1
我遇到了一些问题代码见(2),这是我编辑的版本:
sudo su
然后
dpkg -l | awk -F" " '/ttf-/ {print $2} /fonts-/ {print $2}' | while read line; do apt-get purge -y $line && apt-get install $line -y; done
(添加了 -y)
答案2
您的字体缓存可能已损坏。请尝试清除它。
要执行相同操作,使用 ++ 切换到 tty1Ctrl并Alt运行F1:
$ sudo pkill -9 lightdm # or whatever your desktop manager is
$ rm ~/.fontconfig/*
$ sudo rm /var/cache/fontconfig/*
您可能需要重新安装字体包fonts-*
,ttf-*
此时:
$ sudo dpkg -l | awk -F" " '/ttf-/ {print $2} /fonts-/ {print $2}' | while read line; do apt-get purge -y $line && apt-get install $line -y; done
最后,按Ctrl+ Alt+Del重新启动。