$ sudo pacman -S netctl --noconfirm
Installez le package netctl
. (--Nonfirm: option à exécuter sans confirmation)
J'obtiens une erreur quand je fais «vagrant up» avec la ligne suivante de «Vagrantfile» activée dans le système d'exploitation invité «archlinux / archlinux».
config.vm.network "public_network"
config.vm.network "private_network", ip: "192.168.33.10"
==> default: Configuring and enabling network interfaces...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
# Configure eth1
mv '/tmp/vagrant-network-eth1-xxxxxxxxxx-x' '/etc/netctl/eth1' &&
ip link set 'eth1' down &&
netctl restart 'eth1' &&
netctl enable 'eth1'
Stdout from the command:
Stderr from the command:
mv: cannot move '/tmp/vagrant-network-eth1-xxxxxxxxxx-x' to '/etc/netctl/eth1': No such file or directory
mv: cannot move '/tmp/vagrant-network-eth1-xxxxxxxxxx-x' to '/etc/netctl/eth1'
Je suis en colère de ne pas trouver le répertoire / etc / netctl / eth1
.
C'est le répertoire créé en installant netctl
.
La boîte du système d'exploitation invité ʻarchlinux / archlinuxn'inclut pas
netctl. La solution consiste à installer avec
sudo pacman -S netctl`.
Recommended Posts