Obtendo o software estrangeiro do terminal

0

eu usei

sudo apt-get install alien dpkg-dev debhelper build-essential

para obter o pacote alien para o Terminal no Ubuntu 14.04. Mas eu recebi esta mensagem de erro e não consegui encontrar uma solução ... Isto é o que eu tenho no Terminal,

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 dpkg-dev : Depends: libdpkg-perl (= 1.17.5ubuntu5) but 1.17.5ubuntu5.3 is to be installed
            Recommends: fakeroot but it is not going to be installed
            Recommends: libalgorithm-merge-perl but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Por favor, ajude-me, eu ainda sou iniciante no Linux ...

    
por Imantha Ahangama 30.10.2014 / 12:03

1 resposta

0

Pacote alien & amp; build-essential estão disponíveis no repositório principal do Ubuntu 14.04 .

Antes de tudo, verifique se você ativou Main & amp; Repositório Universe de Software & amp; Atualizações:

% bl0ck_qu0te%

Ocomandoaseguirtambéméútilparaativarosprincipais&repositóriosdouniverso:

sudoadd-apt-repository"deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"
sudo apt-get update

Em seguida, instale o pacote por:

sudo apt-get update
sudo apt-get install alien

Se ainda tiver problemas, verifique o repositório extra adicionado manualmente (em Software e atualizações > Outro software); remover / limpar eles. E tente sudo apt-get update , sudo apt-get install alien

sudo apt-get install -f e sudo dpkg --configure -a também são úteis para corrigir dependências e concluir a configuração pendente.

    
por Pandya 02.11.2014 / 05:20