Ubuntu no Pandaboard me causando problemas

1

Estou tentando instalar os extras do OMAP4 para o Ubuntu no meu pandaboard. Por alguma razão, alguns pacotes parecem não estar de acordo uns com os outros.

Isso foi o que eu fiz até agora:

  • instalado no Ubuntu 11.10 no cartão SD
  • Ligado ao Pandaboard e deixe terminar a instalação inicial
  • Fiz um "apt-get update" e "apt-get upgrade", para instalar atualizações

Até agora, tudo correu bem, e fiquei muito feliz com o meu Pandaboard, mas cometi o erro de digitar isso:

apt-get instale o ubuntu-imap4-extras

No começo, tudo parecia bem, e começou a baixar e instalar. Mas depois de um tempo ele simplesmente caiu. Eu tentei de novo, mas depois me deu isso:

Reading package lists... Done
Building dependency tree
Reading state information... Done
ubuntu-omap4-extras is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
gstreamer0.10-openmax : Depends: gstreamer0.10-plugins-bad but it is not going to be installed
gstreamer0.10-plugin-ducati : Depends: gstreamer0.10-plugins-bad but it is not going to be installed
ubuntu-omap4-extras-multimedia : Depends: gstreamer0.10-plugins-bad (>= 0.10.22-2ubuntu4+ti1.5) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Então eu tentei a sugestão: apt-get -f install:

Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
gstreamer0.10-plugins-bad
The following NEW packages will be installed:
gstreamer0.10-plugins-bad
0 upgraded, 1 newly installed, 0 to remove and 4 not upgraded.
88 not fully installed or removed.
Need to get 0 B/1,794 kB of archives.
After this operation, 4,571 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 143575 files and directories currently installed.)
Unpacking gstreamer0.10-plugins-bad (from .../gstreamer0.10-plugins bad_0.10.22-2ubuntu4+ti1.5.4.8+1_armel.deb) ...
dpkg: error processing /var/cache/apt/archives/gstreamer0.10-plugins-bad_0.10.22-2ubuntu4+ti1.5.4.8+1_armel.deb (--unpack):
trying to overwrite '/usr/lib/libgstbasecamerabinsrc-0.10.so.0.0.0', which is also in package gstreamer0.10-plugins-good 0.10.30-1ubuntu7.1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/gstreamer0.10-plugins-bad_0.10.22-2ubuntu4+ti1.5.4.8+1_armel.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Parece que dois pacotes (plugins-good e plugins-bad) estão brigando pela mesma biblioteca.

Alguma ideia de como corrigir isso ??

    
por Jeroen Jacobs 24.05.2012 / 00:15

2 respostas

2

Meus passos para resolver este problema:

dpkg -r --force all gstreamer0.10-plugins-good
apt-get -f install
apt-get install ubuntu-omap4-extras

Força para remover o bom pacote primeiro!

    
por Yuju 10.09.2012 / 16:49
0

Tente limpar e atualizar seu sistema

sudo apt-get autoremove
sudo apt-get clean
sudo apt-get autoclean
sudo apt-get update
sudo apt-get upgrade
    
por blade19899 10.09.2012 / 17:01