Невозможно обновить из-за проблемы привязки в Ubuntu 12.04 LTS

Как я могу полностью удалить Bind 9 в Ubuntu. Это вызывает проблемы с поддержанием сервера в актуальном состоянии, как показано.

  **root@cp11:~# apt-get upgrade**

    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    You might want to run 'apt-get -f install' to correct these.
    The following packages have unmet dependencies:
     bind9 : Depends: libbind9-80 (= 1:9.8.1.dfsg.P1-4ubuntu0.2) but 1:9.8.1.dfsg.P1-4ubuntu0.5 is installed
             Depends: libdns81 (= 1:9.8.1.dfsg.P1-4ubuntu0.2) but 1:9.8.1.dfsg.P1-4ubuntu0.5 is installed
             Depends: libisc83 (= 1:9.8.1.dfsg.P1-4ubuntu0.2) but 1:9.8.1.dfsg.P1-4ubuntu0.5 is installed
             Depends: libisccc80 (= 1:9.8.1.dfsg.P1-4ubuntu0.2) but 1:9.8.1.dfsg.P1-4ubuntu0.5 is installed
             Depends: libisccfg82 (= 1:9.8.1.dfsg.P1-4ubuntu0.2) but 1:9.8.1.dfsg.P1-4ubuntu0.5 is installed
             Depends: liblwres80 (= 1:9.8.1.dfsg.P1-4ubuntu0.2) but 1:9.8.1.dfsg.P1-4ubuntu0.5 is installed
             Depends: bind9utils (= 1:9.8.1.dfsg.P1-4ubuntu0.2) but 1:9.8.1.dfsg.P1-4ubuntu0.5 is installed
    E: Unmet dependencies. Try using -f.    
    root@cp11:~# 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:
      bind9
    Suggested packages:
      bind9-doc
    The following packages will be upgraded:
      bind9
    1 upgraded, 0 newly installed, 0 to remove and 196 not upgraded.
    1 not fully installed or removed.
    Need to get 0 B/343 kB of archives.
    After this operation, 0 B of additional disk space will be used.
    Do you want to continue [Y/n]? y
    dpkg: dependency problems prevent configuration of bind9:
     bind9 depends on libbind9-80 (= 1:9.8.1.dfsg.P1-4ubuntu0.2); however:
      Version of libbind9-80 on system is 1:9.8.1.dfsg.P1-4ubuntu0.5.
     bind9 depends on libdns81 (= 1:9.8.1.dfsg.P1-4ubuntu0.2); however:
      Version of libdns81 on system is 1:9.8.1.dfsg.P1-4ubuntu0.5.
     bind9 depends on libisc83 (= 1:9.8.1.dfsg.P1-4ubuntu0.2); however:
      Version of libisc83 on system is 1:9.8.1.dfsg.P1-4ubuntu0.5.
     bind9 depends on libisccc80 (= 1:9.8.1.dfsg.P1-4ubuntu0.2); however:
      Version of libisccc80 on system is 1:9.8.1.dfsg.P1-4ubuntu0.5.
     bind9 depends on libisccfg82 (= 1:9.8.1.dfsg.P1-4ubuntu0.2); however:
      Version of libisccfg82 on system is 1:9.8.1.dfsg.P1-4ubuntu0.5.
     bind9 depends on liblwres80 (= 1:9.8.1.dfsg.P1-4ubuntu0.2); however:
      Version of liblwres80 on system is 1:9.8.1.dfsg.P1-4ubuntu0.5.
     bind9 depends on bind9utils (= 1:9.8.1.dfsg.P1-4ubuntu0.2); however:
      Version of bind9utils on system is 1:9.8.1.dfsg.P1-4ubuntu0.5.
    dpkg: error processing bind9 (--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:
     bind9
    E: Sub-process /usr/bin/dpkg returned an error code (1)
1
задан 26 March 2013 в 19:23

2 ответа

Ниже приведен, по-видимому, радикальный способ решения этой ошибки.

Я видел это на форумах Ubuntu и ссылку на: https://help.ubuntu.com/community/Pa...otingProcedure

Я попробовал это на своей системе ( server11) и это не сработало, но я все равно выкладываю решение здесь. На моей системе я уже видел на apt-get clean, что она уже выдает ту же ошибку, что и раньше.

sudo mv /var/lib/dpkg/status /var/lib/dpkg/status-bad
sudo cp /var/lib/dpkg/status-old /var/lib/dpkg/status
sudo mv /var/lib/dpkg/available /var/lib/dpkg/available-bad
sudo cp /var/lib/dpkg/available-old /var/lib/dpkg/available
sudo rm -rf /var/lib/dpkg/updates/*
sudo rm -rf /var/lib/apt/lists/*
sudo mkdir /var/lib/apt/lists/partial
sudo rm /var/cache/apt/*.bin
sudo apt-get clean
sudo apt-get autoremove
sudo apt-get update
sudo dpkg --configure -a
sudo apt-get install -f

Первоначальная ссылка: http://ubuntuforums.org/showthread.php?t=2068352&page=2

0
ответ дан 26 March 2013 в 19:23

Извините за мой английский, я бразилец ... но в моем случае (Ubuntu 12.04 LTS) я решаю с

sudo mv /var/lib/dpkg/status /var/lib/dpkg/status-bad
sudo cp /var/lib/dpkg/status-old /var/lib/dpkg/status
sudo mv /var/lib/dpkg/available /var/lib/dpkg/available-bad
sudo cp /var/lib/dpkg/available-old /var/lib/dpkg/available
sudo rm -rf /var/lib/dpkg/updates/*
sudo rm -rf /var/lib/apt/lists/*
sudo mkdir /var/lib/apt/lists/partial
sudo rm /var/cache/apt/*.bin
sudo apt-get clean
sudo apt-get -f autoremove
sudo apt-get update
sudo dpkg --configure -a
sudo apt-get upgrade
sudo apt-get -f autoremove (again)
0
ответ дан 26 March 2013 в 19:23

Другие вопросы по тегам:

Похожие вопросы: