14.04 tipo MIME “png”

1

Mensagem de erro clicando em imagens nnn.png (e sem exibição de imagem):

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.

Isso deve funcionar "fora da caixa" em 14.04 LTS.

    
por user308051 22.07.2014 / 17:52

2 respostas

1

Provavelmente você quer dizer abrir *.png arquivos, tipo mime x-apple-ios-png com o gnome commander.

A resposta está aí: link . Crie três arquivos no diretório ~/.local/share/applications :

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

Funciona no Ubuntu 14.04.1, Gnome Commander 1.2.8.17

    
por ubuntero 05.09.2014 / 13:29
0

Muito obrigado. Isso realmente me ajudou. E eu escrevi este código para poder cortar imagens:

eog-usercreated.desktop

[Desktop Entry]
Name=shotwell  
MimeType=image/x-apple-ios-png;  
Exec='/usr/bin/shotwell'  
Type=Application  
Terminal=false  
NoDisplay=true  
    
por user225513 26.02.2016 / 16:35