Atualização interrompida no libdbus

2

Em uma atualização recente da minha instalação precisa, o gerenciador de pacotes parece ter entrado em uma reviravolta.

cat /var/log/apt/history.log

Start-Date: 2014-07-10  16:17:22
Upgrade: libdbus-1-3:amd64 (1.4.18-1ubuntu1.4, 1.4.18-1ubuntu1.5), libdbus-1-3:i386              (1.4.18-1ubuntu1.4, 1.4.18-1ubuntu1.5), dbus:amd64 (1.4.18-1ubuntu1.4, 1.4.18-1ubuntu1.5),   flashplugin-installer:amd64 (11.2.202.378ubuntu0.12.04.1, 11.2.202.394ubuntu0.12.04.1), dbus-x11:amd64 (1.4.18-1ubuntu1.4, 1.4.18-1ubuntu1.5)
Error: Sub-process /usr/bin/dpkg returned an error code (2)
End-Date: 2014-07-10  16:17:41

Saída do apt-get update

You might want to run ‘apt-get -f install’ to correct these.
The following packages have unmet dependencies.
libdbus-1-3 : Breaks: libdbus-1-3:i386 (!= 1.4.18-1ubuntu1.4) but 1.4.18-1ubuntu1.5   is installed
libdbus-1-3:i386 : Breaks: libdbus-1-3 (!= 1.4.18-1ubuntu1.5) but 1.4.18-1ubuntu1.4   is installed
E: Unmet dependencies. Try using -f.

apt-get -f install

dpkg: error processing libdbus-1-3 (--configure):
libdbus-1-3:amd64 1.4.18-1ubuntu1.4 cannot be configured because libdbus-1-3:i386 is   in a different version (1.4.18-1ubuntu1.5)
dpkg: error processing libdbus-1-3:i386 (--configure):
libdbus-1-3:i386 1.4.18-1ubuntu1.5 cannot be configured because libdbus-1-3:amd64 is   in a different version (1.4.18-1ubuntu1.4)
Errors were encountered while processing: libdbus-1-3 libdbus-1-3:i386
E: Sub-process /usr/bin/dpkg returned an error code (1)

Eu acho que a versão i386 não combina mais com a versão x86_64 por algum motivo? Não estou claro como resolver isso. Ajuda apreciada. Muito obrigado antecipadamente

    
por Thin 15.07.2014 / 14:42

2 respostas

1

Execute sudo dpkg --remove libdbus-1-3:i386 . dpkg provavelmente reclamará sobre dependências não atendidas. Em seguida, execute sudo apt-get install libdbus-1-3 libdbus-1-3:i386 para atualizar o pacote amd64 (se necessário) e instale o pacote i386 .

    
por saiarcot895 15.07.2014 / 17:21
0

Com base em esta resposta , as instruções a seguir ajudaram-me a resolver um problema semelhante:

dpkg --add-architecture i386
apt-get update
apt-get install libdbus-1-3:i386
apt-get -f install
    
por Ahmad Yoosofan 15.02.2016 / 16:21