web-dev-qa-db-fra.com

J'ai essayé d'installer vagrant mais j'ai échoué en raison de problèmes de dépendance avec libarchive13

choz@Choz-Liu:~$ Sudo apt-get -f install vagrant
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:
vagrant : Depends: bsdtar but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

choz@Choz-Liu:~$ Sudo apt-get install bsdtar
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:
bsdtar : Depends: libarchive13 (= 3.1.2-11build1) but     3.1.2-11ubuntu0.16.04.2 is to be installed
E: Unable to correct problems, you have held broken packages.
2
kororo

Il semble y avoir un bogue ouvert pour ceci: https://bugs.launchpad.net/ubuntu/+source/vagrant/+bug/1503565

Matthew Giassa (mgiassa) de cette page dispose d'une solution de contournement possible:

Matthew Giassa (mgiassa) a écrit le 2016-10-07:

Récemment rencontré ce problème sur Ubuntu 16.04.1 sur SMP 4.4.0-38-generic # 57-Ubuntu.

Il semble que l'étiquette de construction dans libarchive13 soit incorrecte ou que bsdtar attende la mauvaise version.

J'ai pu résoudre ce problème via:

  • apt-get téléchargez bsdtar mkdir temp_out dpkg-deb -R

  • bsdtar_3.1.2-11build1_AMD64.deb temp_out

  • # Modifiez le "fichier de contrôle dans temp_out/DEBIAN, la version" 3.1.2-11build1 "est remplacée par" 3.2.1-2 ~ ubuntu16.04.1. "Enregistrez, fermez.

  • dpkg-deb -b temp_out FIXED_bsdtar.deb

  • Sudo dpkg -i ./FIXED_bsdtar.deb

Ensuite, j'ai réussi à installer et à utiliser vagrant via: "Sudo apt-get install vagrant". Le seul inconvénient de cette approche est que je devrai éventuellement résoudre ce problème manuellement lorsque le paquet bsdtar aura été corrigé.

Ce n’est probablement pas une solution à long terme, alors vous voudrez peut-être simplement télécharger vagant pour le moment, jusqu’à ce que le bogue soit corrigé.

3
interduo
  1. Téléchargez bsdtar adapté à Debian 16.04 (principalement pour libarchive13 dans U16.04): https://packages.ubuntu.com/xenial/AMD64/bsdtar/download

    wget -P /tmp http://security.ubuntu.com/ubuntu/pool/universe/liba/libarchive/bsdtar_3.1.2-11ubuntu0.16.04.3_AMD64.deb
    
  2. Installez-le localement:

    apt install /tmp/bsdtar_3.1.2-11ubuntu0.16.04.3_AMD64.deb
    
  3. Ensuite, vagrant peut être installé:

    apt install vagrant
    
0
Tomas Lipensky