Chromiumはxdg-open
を使用してPDFファイルを開いているようです。
別のPDFリーダーに変更するにはどうすればよいですか?
Linux Mint 8LXDEを使用しています。
このコマンドは、構成ファイルを編集して、デフォルトとしてxpdf
を使用しますPDFビューア:
xdg-mime default xpdf.desktop application/pdf
xdg-open
の詳細については、こちらをご覧ください。
OPがUbuntu10.04で説明している正確な問題がありました。/etc/mailcapにxpdfとevinceの両方のエントリがあったようです。
application/pdf; /usr/bin/xpdf '%s'; test=test "$DISPLAY" != ""; description=Portable Document Format; nametemplate=%s.pdf
application/x-pdf; /usr/bin/xpdf '%s'; test=test "$DISPLAY" != ""; description=Portable Document Format; nametemplate=%s.pdf
application/x-dia-diagram; dia '%s'; description="DIA diagram"; test=test -n "$DISPLAY"; nametemplate=%s.dia
audio/basic; /usr/bin/esdplay '%s'
audio/x-wav; /usr/bin/esdplay '%s'
audio/x-aiff; /usr/bin/esdplay '%s'
application/pdf; evince '%s'; test=test -n "$DISPLAY"; nametemplate=%s.pdf
application/x-pdf; evince '%s'; test=test -n "$DISPLAY"; nametemplate=%s.pdf
xpdfのエントリを削除/コメントアウトすると、問題が解決しました
これらを確認してください:/usr/share/applications/defaults.list
~/.local/share/applications/defaults.list
そしてコマンドxdg-mime
。使用する man xdg-mime
to RTFM :)))。