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.
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 quebsdtar
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é.
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
Installez-le localement:
apt install /tmp/bsdtar_3.1.2-11ubuntu0.16.04.3_AMD64.deb
Ensuite, vagrant peut être installé:
apt install vagrant