在系统终端中运行:
sudo apt-get install okular
如果打开的pdf不支持中文,请按如下操作:
在 terminal 里输入
sudo apt-get install poppler-data
如果还不行,则再次输入
sudo apt-get install poppler-utils
如果依然不行,则可能是因为某些 pdf 文件没有明确指明字体,系统就会默认用英文字体来显示,于是导致中文字体显示失败!解决办法是:
sudo vi /etc/fonts/conf.d/49-sansserif.conf
把
<edit name="family" mode="append_last">
<string>sans-serif</string>
</edit>
改为
<edit name="family" mode="append_last">
<string>monospace</string>
</edit>
如果修改后的字体 monospace 依然不能显示,则可以改为 宋体 来显示!
Ubuntu安装okular PDF阅读器:http://www.linuxdiyf.com/linux/16458.html
Ubuntu15.04安装pdf阅读器Okular:http://www.linuxdiyf.com/linux/13021.html