dpkg: problemy z zależnościami uniemożliwiają konfigurację narzędzi initramfs


10

Rozpocząłem aktualizację mojego systemu Kubuntu 12.04 za pomocą tego polecenia, jak zwykle:

sudo apt-get --show-upgraded dist-upgrade

Wróciłem później i to się nie udało:

Preconfiguring packages ...
(Reading database ... 478306 files and directories currently installed.)
Preparing to replace  ...
Unpacking replacement base-files ...
Processing triggers for man-db ...
Processing triggers for install-info ...
...
Processing triggers for initramfs-tools ...
update-initramfs: Generating /boot/initrd.img-3.8.0-32-lowlatency

gzip: stdout: No space left on device
E: mkinitramfs failure cpio 141 gzip 1
update-initramfs: failed for /boot/initrd.img-3.8.0-32-lowlatency with 1.
dpkg: error processing initramfs-tools (--unpack):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)

oto problem: $ df -h wyjście:

Filesystem                    Size  Used Avail Use% Mounted on
/dev/sda1                     894M  879M     0 100% /boot

ręcznie usunięte starsze pliki, a teraz trochę miejsca jest wolne

Filesystem                    Size  Used Avail Use% Mounted on
/dev/sda1                     894M  129M  717M  16% /boot

Uruchomiłem to następnie:

sudo apt-get autoremove

Kolejny:

sudo apt-get -f install wynik:

The following extra packages will be installed:
  initramfs-tools
The following packages will be upgraded:
  initramfs-tools

dpkg: dependency problems prevent configuration of initramfs-tools:
 initramfs-tools depends on initramfs-tools-bin (<< 0.99ubuntu13.3.1~); however:
  Version of initramfs-tools-bin on system is 0.99ubuntu13.4.
dpkg: error processing initramfs-tools (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                         Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)

sudo apt-get install initramfs-tools
powyższe zawodzi

dpkg -l initramfs-tools wynik:

Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name           Version        Description
+++-==============-==============-============================================
iF  initramfs-tool 0.99ubuntu13.3 tools for generating an initramfs

sudo apt-get install --reinstall initramfs-tools wynik:

The following packages will be upgraded:
  initramfs-tools
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0 B/49.2 kB of archives.
After this operation, 0 B of additional disk space will be used.
dpkg: dependency problems prevent configuration of initramfs-tools:
 initramfs-tools depends on initramfs-tools-bin (<< 0.99ubuntu13.3.1~); however:
  Version of initramfs-tools-bin on system is 0.99ubuntu13.4.
dpkg: error processing initramfs-tools (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                         Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)

Oto wynik apt-cache policy initramfs-tools-bin initramfs-tools:

initramfs-tools-bin:
  Installed: 0.99ubuntu13.4
  Candidate: 0.99ubuntu13.4
  Version table:
 *** 0.99ubuntu13.4 0
        500 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 Packages
        100 /var/lib/dpkg/status
     0.99ubuntu13 0
        500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
initramfs-tools:
  Installed: 0.99ubuntu13.3
  Candidate: 0.99ubuntu13.4
  Version table:
     0.99ubuntu13.4 0
        500 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 Packages
 *** 0.99ubuntu13.3 0
        100 /var/lib/dpkg/status
     0.99ubuntu13 0
        500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

Jak zasugerowano poniżej, oto moje następne kroki:

$ sudo apt-get update
$ sudo apt-get -f install initramfs-tools=0.99ubuntu13 initramfs-tools-bin=0.99ubuntu13

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  ...
Use 'apt-get autoremove' to remove them.
The following packages will be DOWNGRADED:
  initramfs-tools initramfs-tools-bin
0 upgraded, 0 newly installed, 2 downgraded, 0 to remove and 4 not upgraded.
1 not fully installed or removed.
Need to get 59.2 kB of archives.
After this operation, 2,048 B disk space will be freed.
Do you want to continue [Y/n]? 
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise/main initramfs-tools all 0.99ubuntu13 [49.2 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ precise/main initramfs-tools-bin amd64 0.99ubuntu13 [9,988 B]
Fetched 59.2 kB in 0s (124 kB/s)            
dpkg: warning: downgrading initramfs-tools-bin from 0.99ubuntu13.4 to 0.99ubuntu13.
(Reading database ... 478624 files and directories currently installed.)
Preparing to replace initramfs-tools-bin 0.99ubuntu13.4 (using .../initramfs-tools-bin_0.99ubuntu13_amd64.deb) ...
Unpacking replacement initramfs-tools-bin ...
Setting up initramfs-tools-bin (0.99ubuntu13) ...
dpkg: dependency problems prevent configuration of initramfs-tools:
 initramfs-tools depends on initramfs-tools-bin (>= 0.99ubuntu13.3); however:
  Version of initramfs-tools-bin on system is 0.99ubuntu13.
dpkg: error processing initramfs-tools (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                         Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)

Następnie wypróbowałem sugestię Gilesa:

sudo dpkg --configure -a --force-depends
sudo apt-get install -f
sudo apt-get dist-upgrade

Jestem nieco zdezorientowany. Proszę zamieścić wynikapt-cache policy initramfs-tools-bin initramfs-tools
Gilles 'SO- przestańcie być źli'

@Gilles - dziękuję za uwagę. Zaktualizowałem pytanie o te informacje.
MountainX

Spróbuj ręcznie określić wersję:apt-get install initramfs-tools=0.99ubuntu13.4
jordanm

Hmmm, wygląda to na błąd w zależnościach initramfs-toolspakietu lub w sposobie zarządzania nimi przez dpkg. Myślę, że twój system nie powinien wejść w ten stan, w którym nowy initramfs-tools-binjest oznaczony jako zainstalowany, ale stary initramfs-toolsnadal tam jest. Czy dpkg --configure -a --force-dependspomaga
Gilles „SO- przestań być zły”

Jaka jest wydajność sudo apt-get checki dpkg --audit?
Braiam

Odpowiedzi:


26

Twój system jest w stanie, który moim zdaniem nie powinien się zdarzyć: masz nową wersję zależności initramfs-tools-binw stanie zainstalowanym, ale starą wersję zależności initramfs-toolsw stanie częściowo zainstalowanym. Nie jestem pewien, czy problem polega na tym, że APT pozwala systemowi przejść do stanu, w którym nie może się odzyskać, dpkg pozwala systemowi przejść do stanu, w którym nie może się odzyskać, opiekun pakietu użył kombinacji zależności który nie jest obsługiwany lub moje ograniczone rozumienie nie obejmuje tej sprawy.

Spróbuj użyć dpkgbezpośrednio:

dpkg --configure -a

Jeśli nadal narzeka to na zależności, spróbuj

dpkg --configure -a --force-depends

Jeśli to zadziała, masz bazę danych dpkg w spójnym stanie. Musisz ustawić APT w dobrym stanie (który nie wymaga przerwanych zależności):

apt-get -f install

Następnie możesz wznowić normalne uaktualnianie.


Jeśli usuwałeś /bootstare jądra znajdujące się w pakietach, nie będziesz już mógł usuwać pakietów jądra. Będziesz musiał odtworzyć pliki. Możesz utworzyć puste pliki ( touch `cat /var/lib/dpkg/info/linux-image-1.2.3-foo`), jeśli usuwasz linux-image-1.2.3-foopakiet i ręcznie usuwasz niektóre jego pliki.


1
Wielkie dzięki !!! dpkg z opcją --force-depends robi różnicę, a następnie naprawienie uszkodzonego pakietu
załatwiło sprawę

2
update-initramfs: Generating /boot/initrd.img-3.8.0-32-lowlatency

gzip: stdout: No space left on device

Oznacza to, że musisz usunąć niektóre jądra. Stare, nieużywane jądra są najlepszą alternatywą.

sudo dpkg --purge linux-generic-someold-version

ręcznie usunięte starsze pliki, a teraz trochę miejsca jest wolne

NIE!

Nigdy nie należy ręcznie niczego usuwać. Zawsze. Tylko z rzeczy /homei /tmpktóre mogą być łatwo odzyskać może mnie dotknąć ręką, inaczej używać narzędzi. To jest sens posiadania DPKG / APT do twojej usługi. Jeśli chcesz coś usunąć, użyj zamiast tego apt / dpkg i pozostaw rzeczy wykonane ręcznie jako ostatnią alternatywę. Przypuszczam, że twój obecny problem jest z tego powodu.


Aby rozwiązać problem zależności, możesz obniżyć, a następnie uaktualnić:

sudo apt-get update
sudo apt-get -f install initramfs-tools=0.99ubuntu13 initramfs-tools-bin=0.99ubuntu13
sudo apt-get upgrade

W tym momencie powinieneś powiedzieć dpkg / apt, aby usunął również stare jądra.


Próbowałem twojej sugestii. To także nie działa. Zaktualizowałem moje pytanie o dane wyjściowe.
MountainX
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.