web-dev-qa-db-ja.com

14.04 MIMEタイプ "png"

Nnn.png画像をクリックするとエラーメッセージが表示されます(画像は表示されません)。

No default application found for the MIME type image/x-Apple-ios-png.
Open the "File types and programs" page in the Control Center to add one.

これは14.04 LTSで「そのまま」機能するはずです。

1
user308051

おそらく、あなたは*.pngファイル、mimeタイプx-Apple-ios-pngをgnome commanderで開くことを意味します。

答えはそこにあります: http://gcmd.github.io/doc.html~/.local/share/applicationsディレクトリに3つのファイルを作成します。

mimeapps.list

[Default Applications]  
image/x-Apple-ios-png=eog-usercreated.desktop

eog-usercreated.desktop

[Desktop Entry]
Name=eog  
MimeType=image/x-Apple-ios-png;  
Exec='/usr/bin/eog'  
Type=Application  
Terminal=false  
NoDisplay=true  

mimeinfo.cache

[MIME Cache]  
image/x-Apple-ios-png=eog-usercreated.desktop

Ubuntu 14.04.1、Gnome Commander 1.2.8.17で動作します

1
ubuntero

どうもありがとうございました。それは本当に私を助けました。そして、私はこのコードを書いて、画像をトリミングできるようにしました:

eog-usercreated.desktop

[Desktop Entry]
Name=shotwell  
MimeType=image/x-Apple-ios-png;  
Exec='/usr/bin/shotwell'  
Type=Application  
Terminal=false  
NoDisplay=true  
0
user225513