İle Resmi Ubuntu 16.04 LTS (Xenial xerus) temel ağ ayarları ile ilgili sorunlar (VirtualBox üzerine) Serseri kutu görüntüsü:
Benim Vagrantfile
:
Vagrant.configure(2) do |config|
config.vm.box = 'ubuntu/xenial64'
config.vm.define "xenial" do |server|
server.vm.network "private_network", ip: "192.168.10.10"
end
end
vagrant up
sonuç:
==> xenial: Configuring and enabling network interfaces...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
/sbin/ifdown eth1 2> /dev/null
Stdout from the command:
Stderr from the command:
sudo: unable to resolve host ubuntu-xenial
mesg: ttyname failed: Inappropriate ioctl for device
Yapılandırmayı DHCP'ye bırakmak da çalışmaz:
server.vm.network "private_network", type: "dhcp"
Aynı zamanda, yukarıda konfigürasyonlar için çalışan ubuntu/trusty64
ve ubuntu/wily64
resmi olmayan gbarbieru/xenial
.
Komutun denenmesi, /sbin/ifdown eth1 2> /dev/null
arayüzün farklı adlandırma şemasına sahip olduğu için (ana olanı enp0s3
) sonuç vermez .
Burada bariz bir şeyi mi kaçırıyorum yoksa kutu kırılmış mı?