O que significa tipo de mídia desconhecido no tipo 'all / all'? [duplicado]

21
    

Esta pergunta já tem uma resposta aqui:

    
  •              Como remover avisos como 'Tipo de mídia desconhecido…' [duplicado]                                      4 respostas                          
  •     

Eu reinstalei o player do Amarok no meu Kubuntu 14.04 porque parecia buggy. Eu notei isso no terminal:

david@EMACHINE:~$ sudo apt-get install --reinstall amarok
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
Need to get 5,715 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://mirror.lstn.net/ubuntu/ trusty/universe amarok i386 2:2.8.0-0ubuntu3 [5,715 kB]
Fetched 5,715 kB in 2s (2,611 kB/s) 
(Reading database ... 128504 files and directories currently installed.)
Preparing to unpack .../amarok_2%3a2.8.0-0ubuntu3_i386.deb ...
Unpacking amarok (2:2.8.0-0ubuntu3) over (2:2.8.0-0ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for mime-support (3.54ubuntu1) ...
Processing triggers for shared-mime-info (1.2-0ubuntu3) ...
Unknown media type in type 'all/all'
Unknown media type in type 'all/allfiles'
Unknown media type in type 'uri/mms'
Unknown media type in type 'uri/mmst'
Unknown media type in type 'uri/mmsu'
Unknown media type in type 'uri/pnm'
Unknown media type in type 'uri/rtspt'
Unknown media type in type 'uri/rtspu'
Processing triggers for man-db (2.6.7.1-1) ...
Setting up amarok (2:2.8.0-0ubuntu3) ...
Processing triggers for libc-bin (2.19-0ubuntu6) ...

Veja todas as incógnitas. Estas podem ser a causa do jogador não funcionar corretamente? Como posso corrigir isso se for, um erro?

    
por Demiurgetheartisan 27.04.2014 / 06:29

2 respostas

31

é um erro, veja link

tente

sudo rm /usr/share/mime/packages/kde.xml 
sudo update-mime-database /usr/share/mime
    
por Panther 27.04.2014 / 10:14
1

Não tenho certeza do que o erro significa, mas compartilharei com você o que funcionou para mim.

Basicamente, basta excluir todos os tipos mime errados no arquivo kde.xml .

Depois disso, execute:

sudo update-mime-database /usr/share/mime

Os dois primeiros devem ser parecidos;

<mime-type type="all/all">
  <comment>all files and folders</comment>
  </mime-type>
  <mime-type type="all/allfiles">
  <comment>all files</comment>
</mime-type>

Faça o mesmo com o resto, depois faça o logout / login conforme necessário.

Fonte

    
por voidByte 22.07.2016 / 18:47