build-essential tenta instalar o pacote não relacionado nautilus-dropbox

0

Sempre que eu tentar instalá-los através do Centro de Software, ele permanecerá em 0% por horas. Em vez disso, tentei instalar o aplicativo necessário, compilando-o a partir do código-fonte. Eu precisava do pacote build-essential e tentei instalá-lo com apt-get . Agora, ele tenta instalar várias dependências, juntamente com dropbox-nautilus , que também é interrompido em 100% de download por horas. Aqui está a saída completa do terminal:

sudo apt-get install build-essential
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libunistring0:i386 libgomp1:i386 libcroco3:i386 libgettextpo0:i386
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  dpkg-dev fakeroot libalgorithm-diff-perl libalgorithm-diff-xs-perl
  libalgorithm-merge-perl libdpkg-perl
Suggested packages:
  debian-keyring
The following NEW packages will be installed:
  build-essential dpkg-dev fakeroot libalgorithm-diff-perl
  libalgorithm-diff-xs-perl libalgorithm-merge-perl libdpkg-perl
0 upgraded, 7 newly installed, 0 to remove and 327 not upgraded.
6 not fully installed or removed.
Need to get 818 kB of archives.
After this operation, 3,169 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://ca.archive.ubuntu.com/ubuntu/ precise-updates/main libdpkg-perl all 1.16.1.2ubuntu7.6 [181 kB]
Get:2 http://ca.archive.ubuntu.com/ubuntu/ precise-updates/main dpkg-dev all 1.16.1.2ubuntu7.6 [468 kB]
Get:3 http://ca.archive.ubuntu.com/ubuntu/ precise-updates/main build-essential amd64 11.5ubuntu2.1 [5,816 B]
Get:4 http://ca.archive.ubuntu.com/ubuntu/ precise/main fakeroot amd64 1.18.2-1 [87.2 kB]
Get:5 http://ca.archive.ubuntu.com/ubuntu/ precise/main libalgorithm-diff-perl all 1.19.02-2 [50.7 kB]
Get:6 http://ca.archive.ubuntu.com/ubuntu/ precise/main libalgorithm-diff-xs-perl amd64 0.04-2build2 [12.4 kB]
Get:7 http://ca.archive.ubuntu.com/ubuntu/ precise/main libalgorithm-merge-perl all 0.08-2 [12.7 kB]
Fetched 818 kB in 5s (136 kB/s)                 
Selecting previously unselected package libdpkg-perl.
(Reading database ... 234719 files and directories currently installed.)
Unpacking libdpkg-perl (from .../libdpkg-perl_1.16.1.2ubuntu7.6_all.deb) ...
Selecting previously unselected package dpkg-dev.
Unpacking dpkg-dev (from .../dpkg-dev_1.16.1.2ubuntu7.6_all.deb) ...
Selecting previously unselected package build-essential.
Unpacking build-essential (from .../build-essential_11.5ubuntu2.1_amd64.deb) ...
Selecting previously unselected package fakeroot.
Unpacking fakeroot (from .../fakeroot_1.18.2-1_amd64.deb) ...
Selecting previously unselected package libalgorithm-diff-perl.
Unpacking libalgorithm-diff-perl (from .../libalgorithm-diff-perl_1.19.02-2_all.deb) ...
Selecting previously unselected package libalgorithm-diff-xs-perl.
Unpacking libalgorithm-diff-xs-perl (from .../libalgorithm-diff-xs-perl_0.04-2build2_amd64.deb) ...
Selecting previously unselected package libalgorithm-merge-perl.
Unpacking libalgorithm-merge-perl (from .../libalgorithm-merge-perl_0.08-2_all.deb) ...
Processing triggers for man-db ...
Setting up gdebi-core (0.8.5build1) ...
Setting up libcairo-perl (1.081-1build2) ...
Setting up libglib-perl (2:1.241-1) ...
Setting up libpango-perl (1.222-1build1) ...
Setting up libgtk2-perl (2:1.223-1build3) ...
Setting up nautilus-dropbox (0.7.1-2) ...

Dropbox is the easiest way to share and store your files online. Want to learn more? Head to http://www.dropbox.com/

Downloading Dropbox... 100%

O que está acontecendo aqui? E como posso consertar isso? apt-get está completamente inutilizável no momento.

    
por Jonathan Boudreau 24.04.2015 / 00:10

1 resposta

1

Isso não acontece.

sudo apt-get install build-essential
The following NEW packages will be installed:
  build-essential dpkg-dev fakeroot libalgorithm-diff-perl
  libalgorithm-diff-xs-perl libalgorithm-merge-perl libdpkg-perl

Não há pacote nautilus-dropbox na lista. Seu problema é visto mais tarde:

0 upgraded, 7 newly installed, 0 to remove and 327 not upgraded.
6 not fully installed or removed.

Você tem pacotes semi-instalados ou não configurados, o que eu presumo é por que o Centro de Software também não responde.

A única maneira de resolver todos esses problemas é concluir a configuração desses pacotes:

sudo dpkg --configure -a

Qual deve completar a instalação do nautilus-dropbox e qualquer outro pacote. Em seguida, instale os essenciais de construção por padrão e isso deve funcionar.

Se por algum motivo você não quiser instalar um dos pacotes sendo configurados, ex. Nautilus-dropbox, você pode removê-los imediatamente:

sudo dpkg --remove nautilus-dropbox
    
por 24.04.2015 / 00:28

Tags