atualizar e atualizar o Ubuntu 11.10 [duplicado]

0

Eu tenho o Dell latitude E6430, informações do sistema: Ubuntu 11.10, tipo OS 64 bits. Quando eu tentei fazer atualizações para o meu Ubuntu 11.10, ele me deu uma mensagem, que você não pode atualizar nada até que você remova os repositórios de terceiros, mas você pode fazer a atualização. mensagem 1:

your Ubuntu release is not supported anymore. 
you will not get any further security fixes or critical updates. please upgrade to a later version of Ubuntu Linux.

mensagem 2:

not all updates can be installed. run  a partial upgrade, to install as many updates as possible. 
this can be caused by :
a previous upgrade which didn't complete.
problems with some of the installed software.
unofficial software packages not provided by Ubuntu.
normal changes of a pre-release version of Ubuntu.
I clicked on partial upgrade and it prepares upgrade for three hours then start to upgrade , then it didn't finish and stops then these message appear. 
message 3: software index is broken .
it is impossible to install or remove any software. please use the package manager "synaptic" or run " sudo apt-get install-f " in a terminal to fix this issue at first. 
When writing the command sudo apt-get install -f , the following appear

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-timezonemap-1.0 gir1.2-gstreamer-0.10 efibootmgr libtimezonemap1 
  libdmraid1.0.0.rc16 libdebconfclient0 user-setup rdate python-argparse 
  libdebian-installer4 btrfs-tools apt-clone localechooser-data 
  python-xklavier archdetect-deb dmraid python-pyicu 
Use 'apt-get autoremove' to remove them. 
The following extra packages will be installed: 
  adobe-flash-properties-gtk adobe-flashplugin firefox firefox-globalmenu 
  fontconfig libc-bin libc6 libqt4-dbus libqt4-declarative libqt4-network 
  libqt4-opengl libqt4-script libqt4-sql libqt4-sql-mysql libqt4-svg 
  libqt4-xml libqt4-xmlpatterns libqtcore4 libqtgui4 libreoffice-base-core 
  libreoffice-calc libreoffice-common libreoffice-core libreoffice-draw 
  libreoffice-gnome libreoffice-gtk libreoffice-impress libreoffice-math 
  libreoffice-writer python-uno qdbus thunderbird thunderbird-globalmenu 
  thunderbird-gnome-support uno-libs3 ure 
Suggested packages: 
  konqueror-nsplugins msttcorefonts ttf-bitstream-vera ttf-dejavu 
  ttf-xfree86-nonfree xfs libnspr4-0d latex-xft-fonts glibc-doc 
  libqt4-declarative-folderlistmodel libqt4-declarative-gestures 
  libqt4-declarative-particles libqt4-declarative-shaders qt4-qmlviewer 
  libqt4-dev qt4-qtconfig libreoffice-base libreoffice-style-hicontrast 
  libreoffice-style-tango libreoffice-style-crystal libreoffice-style-oxygen 
  libreoffice-evolution libreoffice-gcj libreoffice-java-common 
  libreoffice-filter-binfilter cli-uno-bridge 
The following NEW packages will be installed: 
  fontconfig libc-bin 
The following packages will be upgraded: 
  adobe-flash-properties-gtk adobe-flashplugin firefox firefox-globalmenu 
  libc6 libqt4-dbus libqt4-declarative libqt4-network libqt4-opengl 
  libqt4-script libqt4-sql libqt4-sql-mysql libqt4-svg libqt4-xml 
  libqt4-xmlpatterns libqtcore4 libqtgui4 libreoffice-base-core 
  libreoffice-calc libreoffice-common libreoffice-core libreoffice-draw 
  libreoffice-gnome libreoffice-gtk libreoffice-impress libreoffice-math 
  libreoffice-writer python-uno qdbus thunderbird thunderbird-globalmenu 
  thunderbird-gnome-support uno-libs3 ure 
34 upgraded, 2 newly installed, 0 to remove and 464 not upgraded. 
2 not fully installed or removed. 
Need to get 0 B/134 MB of archives. 
After this operation, 28.2 MB of additional disk space will be used. 
Do you want to continue [Y/n]? y 
Can't exec "locale": No such file or directory at /usr/share/perl5/Debconf/Encoding.pm line 16. 
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp at /usr/share/perl5/Debconf/Encoding.pm line 17. 
Extracting templates from packages: 100% 
Preconfiguring packages ... 
dpkg: warning: 'ldconfig' not found in PATH or not executable. 
dpkg: error: 1 expected program not found in PATH or not executable. 
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin. 
E: Sub-process /usr/bin/dpkg returned an error code (2)
    
por smsm 20.08.2013 / 21:32

1 resposta

0

O problema é que seu índice de software está quebrado. Algum pacote ou outro está sendo problemático. Se você usa apt-get , é provável que não funcione. Tente isto:

  1. Digite sudo dpkg --configure -a . Irá cometer erros, mas não se preocupe.
  2. Encontre os arquivos que estão causando os problemas e digite sudo dpkg -r PACKAGE_NAME para cada um deles. Alguns deles não serão removidos. Adicione-os a uma lista.
  3. Execute sudo dpkg --configure PACKAGE_NAME para cada pacote da sua lista. Isso irá configurá-los. Desta vez, você não deve ver erros.
  4. Execute sudo apt-get install -f para corrigir dependências.
  5. Lucro!

Além disso, você pode querer executar sudo apt-get autoremove para remover pacotes desnecessários. Boa sorte!

Atualização: Para corrigir o problema com ldconfig , tente isto:

  1. aptitude download libc-bin
  2. dpkg-deb -x libc-bin* libc_unpacked
  3. cp libc_unpacked/sbin/ldconfig* /sbin/
por Dillmo 20.08.2013 / 22:45