現象:
環境:
解決方法?
記事:
解決:
config.vm.synced_folder "/vagrant", ".", type: rsync, rsync__args: ["--verbose", "--archive", "--delete", "-z"]
「centos/7」は問題ないが、「centos/6」だと毎回buildしようとして遅い。
実際には「/vagrant」がホストOSのフォルダにマウントされていれば問題ない。
config.vbguest.auto_update = false
vagrant plugin install vagrant-vbguest # Vagrantfile に type: を追加 config.vm.synced_folder ".", "/vagrant", type: 'virtualbox'
環境:
現象:
エラー:
Stderr: VBoxManage.exe: error: Failed to open/create the internal network 'HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter' (VERR_INTNET_FLT_IF_NOT_FOUND). VBoxManage.exe: error: Failed to attach the network LUN (VERR_INTNET_FLT_IF_NOT_FOUND) VBoxManage.exe: error: Details: code E_FAIL (0x80004005), component ConsoleWrap, interface IConsole
解決:
vm.network "private_network", ip: "192.168.56.101"
環境:
現象:
VBoxManage.exe: error: Failed to create the host-only adapter
Assertion failed: [!aInterfaceName.isEmpty()]
原因:
解決:
config.vm.network "private_network", ip: "192.168.56.101"
Vagrant::DEFAULT_SERVER_URL.replace('https://vagrantcloud.com')
suspend中の仮想マシンに繋がらなくなった場合。
config.vm.provider "virtualbox" do |vb| vb.gui = true end