Como corrigir “*: i386 não pode ser configurado porque *: amd64 está em uma versão diferente”?

4

Eu consegui quebrar o apt-get, acho que tinha algo a ver com versões concorrentes da libqt entre o supercollider e o Skype. Quando eu corro apt-get -f install eu recebo:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  libxml++2.6-2 libffado2 libconfig++8 libssl1.0.0:i386
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libqt4-declarative:i386 libqt4-sql-mysql libqt4-sql-mysql:i386 libqt4-test qdbus
Suggested packages:
  libqt4-declarative-folderlistmodel:i386 libqt4-declarative-gestures:i386 libqt4-declarative-particles:i386 libqt4-declarative-shaders:i386 qt4-qmlviewer:i386
  libqt4-dev libqt4-dev:i386
The following packages will be upgraded:
  libqt4-declarative:i386 libqt4-sql-mysql libqt4-sql-mysql:i386 libqt4-test qdbus
5 upgraded, 0 newly installed, 0 to remove and 449 not upgraded.
14 not fully installed or removed.
Need to get 0 B/1,236 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 183437 files and directories currently installed.)
Preparing to replace libqt4-sql-mysql 4:4.8.1-0ubuntu4.1 (using .../libqt4-sql-mysql_4%3a4.8.1-0ubuntu4.2_amd64.deb) ...
Unpacking replacement libqt4-sql-mysql ...
dpkg: error processing libqt4-sql-mysql:i386 (--configure):
 libqt4-sql-mysql:i386 4:4.8.1-0ubuntu4.1 cannot be configured because libqt4-sql-mysql:amd64 is in a different version (4:4.8.1-0ubuntu4.2)
dpkg: error processing libqt4-sql-mysql (--configure):
 libqt4-sql-mysql:amd64 4:4.8.1-0ubuntu4.2 cannot be configured because libqt4-sql-mysql:i386 is in a different version (4:4.8.1-0ubuntu4.1)
Errors were encountered while processing:
 libqt4-sql-mysql:i386
 libqt4-sql-mysql
E: Sub-process /usr/bin/dpkg returned an error code (1)

Eu li que poderia consertar isso instalando o aptitude e removendo e reinstalando pacotes quebrados, mas não consigo instalá-lo usando o dpkg.

    
por Will Munn 24.07.2012 / 23:00

2 respostas

12

Você deve conseguir remover pacotes usando dpkg diretamente, por exemplo:

sudo dpkg -r libqt4-sql-mysql:i386

Você pode então ver se os pacotes restantes podem ser configurados com

sudo dpkg --configure -a

Depois que tudo estiver configurado com êxito, apt-get poderá instalar aptitude , que deve ser capaz de solucionar uma solução para corrigir as dependências.

    
por StarNamer 25.07.2012 / 02:27
0

Tente estes com terminal

sudo apt-get autoremove

sudo apt-get clean

sudo apt-get install -f

    
por Kaktarua 25.07.2012 / 01:02

Tags