我有Vagrant + VirtualBox。Vagrant VirtualBox第二個磁盤路徑
在我Vagrantfile我有
config.vm.provider "virtualbox" do |v|
v.customize [ "createhd", "--filename", "disk", "--size", 100000 ]
v.customize [ 'storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', "disk"]
end
當我與無業遊民了它尋找 「盤」 在 丙火了起來:\ HashiCorp \流浪\ BIN \盤
VBoxManage.exe: error: Could not find file for the medium 'C:\HashiCorp\Vagrant\bin\disk' (VERR_FILE_NOT_FOUND)
我會像磁盤一起住在虛擬機的第一張磁盤旁邊 C:\ Users \ jma47 \ VirtualBox VMs \ bin_build_1389371691
我該如何在Va grantfile?
有沒有機會讓默認的機器文件夾可移植,也就是在Windows上工作? –
要在Windows中使用它,請從cygwin運行vagrant up命令。 – Jepper