问题描述
我刚刚开始使用 Okular,我喜欢它。当我在 pdf 中时,它有很多我需要的功能,并且它已经自动打开了 epub。如何让它默认打开 pdf 而不是“文档查看器”?
我感谢您的帮助!
最佳回答
根据 here ,右键单击所需格式的文件,选择 properties
:
转到 open with
选项卡,选择要作为该类型文件的默认程序,然后按下按钮 Set as Default
:
次佳回答
好吧,其他答案都不适用于 14.04,Okular 根本没有出现在列表中。但这非常有效:
mimeopen -d myfile.pdf
它将为您提供可以打开文件的应用程序列表,并且还会为您更新默认应用程序。
$ mimeopen -d myfile.pdf
Please choose a default application for files of type application/pdf
1) Print Preview (evince-previewer)
2) Xournal (xournal)
3) MuPDF (mupdf)
4) Adobe Reader 9 (AdobeReader)
5) GIMP Image Editor (gimp)
6) Document Viewer (evince)
7) Other...
use application
选择其中之一会将其设置为 application/pdf
文件类型的默认值。您可以使用 Other...
选项轻松地将任何可执行文件设置为默认值:
use application #7
use command: okular
Opening "myfile.pdf" with usr (application/pdf)
旁白:如果 okular
不起作用,您可能想尝试输入完整路径 ( usr/bin/okular
)。您可以通过运行 which okular
找出 Okular 所在的位置。
第三种回答
在 Ubuntu 14.04 中,您需要编辑的文件是:~/.local/share/applications/mimeapps.list
okular 的名称可能会有所不同。有人可能还会发现没有“设为默认值”按钮。
所以请按照以下步骤操作:
Step 1: Right click on any pdf file => Open with => find Okular
现在应在 mimeapps.list 中指定 okular 应用程序的名称。现在转到第 2 步。
Step 2: gedit ~/.local/share/applications/mimeapps.list
Step 3: Find okular in [Added association] and copy to [Default application] section.
In my case, it is 'application/pdf=kde4-okularApplication_pdf.desktop;'
你已经完成了。