On 10/18/2013 09:45 AM, Alex Drahon wrote:
I updated the package, but this is still not solved, though it works on F18. If the directory is owned by the user then the image gets copied but libvirt then can't access it... Not sure where to begin with that.
Any idea if any of your changes would break bringing up a new box? I am no longer able to bring up another box. I have a simple Vagrantfile
Vagrant.configure("2") do |config| config.vm.box = "CentOS-6.3-x86_64-minimal.box" config.vm.box_url = "https://dl.dropbox.com/u/7225008/Vagrant/CentOS-6.3-x86_64-minimal.box" config.vm.network :private_network, ip: "192.168.56.150" end
however it fails to import the box (I use it a few places). With: There was an error while executing `VBoxManage`, a CLI used by Vagrant for controlling VirtualBox. The command and stderr is shown below.
Command: ["import", "/home/gnat/.vagrant.d/boxes/CentOS-6.3-x86_64-minimal.box/virtualbox/box.ovf"]
Stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100% Interpreting /home/gnat/.vagrant.d/boxes/CentOS-6.3-x86_64-minimal.box/virtualbox/box.ovf... OK. 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%... Progress state: VBOX_E_FILE_ERROR VBoxManage: error: Appliance import failed VBoxManage: error: Machine settings file '/srv/vms/CentOS-6.3-x86_64-minimal/CentOS-6.3-x86_64-minimal.vbox' already exists VBoxManage: error: Details: code VBOX_E_FILE_ERROR (0x80bb0004), component Machine, interface IMachine VBoxManage: error: Context: "int handleImportAppliance(HandlerArg*)" at line 781 of file VBoxManageAppliance.cpp
Thoughts? I don't have any VM or hd with that precise name so I'm not sure whate the issue is...