साथ सरकारी उबंटू 16.04 LTS (Xenial Xerus) (VirtualBox पर) मैं बुनियादी नेटवर्क सेटिंग के साथ समस्या है Vagrant बॉक्स छवि:
मेरा 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
परिणाम:
==> 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
डीएचसीपी में कॉन्फ़िगरेशन को छोड़कर भी काम नहीं करता है:
server.vm.network "private_network", type: "dhcp"
इसी समय, ऊपर विन्यास के लिए काम ubuntu/trusty64
और ubuntu/wily64
और अनौपचारिक gbarbieru/xenial
।
कमांड की कोशिश करने /sbin/ifdown eth1 2> /dev/null
से कोई परिणाम नहीं मिलता है क्योंकि इंटरफ़ेस में विभिन्न नामकरण योजना (मुख्य एक है enp0s3
)।
क्या मुझे यहाँ कुछ स्पष्ट याद आ रहा है या क्या बॉक्स सिर्फ टूटा हुआ है?