Necessidade de resolver dependências para instalação

-2

Estou tentando instalar librhythmbox-core8 , mas quando executo os comandos, ele falha.

apt-get install

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 gir1.2-rb-3.0 : Depends: librhythmbox-core8 (>= 3.0.1) but it is not installed
 rhythmbox : Depends: librhythmbox-core8 (= 3.0.1-1ubuntu2~ppa0) but it is not installed
 rhythmbox-plugin-cdrecorder : Depends: librhythmbox-core8 (>= 3.0) but it is not installed
 rhythmbox-plugins : Depends: librhythmbox-core8 (= 3.0.1-1ubuntu2~ppa0) but it is not installed
E: Unmet dependencies. Try using -f.  

apt-get -f install

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:
  gir1.2-gconf-2.0 gir1.2-zeitgeist-2.0 python3-mako python3-markupsafe rhythmbox-plugins
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  librhythmbox-core8
The following NEW packages will be installed:
  librhythmbox-core8
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
6 not fully installed or removed.
Need to get 0 B/816 kB of archives.
After this operation, 1,825 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 259967 files and directories currently installed.)
Unpacking librhythmbox-core8 (from .../librhythmbox-core8_3.0.1-1ubuntu2~ppa0_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/librhythmbox-core8_3.0.1-1ubuntu2~ppa0_i386.deb (--unpack):
 trying to overwrite '/usr/lib/librhythmbox-core.so.8.0.0', which is also in package librhythmbox-core7 3.0.1-0~13.10~ppa1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/librhythmbox-core8_3.0.1-1ubuntu2~ppa0_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Alguém pode me ajudar a consertar isso?

    
por Dzero 28.10.2013 / 19:05

1 resposta

7

O problema é que você tem duas versões do pacote rhythmbox.

librhythmbox-core7 está instalado no seu sistema e você está tentando instalar librhythmbox-core8 .

Você precisa remover manualmente librhythmbox-core7 antes de poder instalar librhythmbox-core8 .

sudo dpkg --remove librhythmbox-core7
sudo apt-get install librhythmbox-core8
    
por Thomas Ward 28.10.2013 / 19:08