-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean install on OS X 10.8.4 w/ latest VirtualBox not working #1847
Comments
I'm having the exact same issue; only change is that I have MacOS 10.7.5. |
Exactly the same for me too. Same software versions (OS X 10.8.4, VirtualBox 4.2.14 r86644, Vagrant 1.2.2) but with precise64. Tried precise32 with same effect. |
Having the same problem here. Also on OS X 10.8.4, VirtualBox 4.2.14 r86644, Vagrant 1.2.2. Experienced it with both precise64 & precise32. Since this seems to be related to the VirtualBox update in combination with OS X, every user who runs a fresh install on OS X will most likely run into this issue. On 22 jun. 2013, at 23:44, Owen Bannister [email protected] wrote:
|
It looks like rolling back to the previous version of VirtualBox (4.2.10) is the beginning of a suitable workaround; I am now able to run:
and it gets further, but hangs at "waiting for boot". The VirtualBox log is at: http://pastebin.com/7RsU31EV |
Downgrading from 4.2.14 to 4.2.10 worked for me too. Mac OS X 10.8.4 15" Macbook Pro I grabbed the older version from here: https://www.virtualbox.org/wiki/Download_Old_Builds |
Same issue on Debian with vagrant 1.2.2 or 1.1.5. Downgrading to virtualbox 4.2.10 and all works as before. |
Same issue with Fedora 18, running vagrant 1.2.2 and VirtualBox-4.2-4.2.14_86644_fedora18-1.x86_64: $ vagrant init precise32 http://files.vagrantup.com/precise32.box $ vagrant up Command: ["import", "/home/ksylvan/.vagrant.d/boxes/precise32/virtualbox/box.ovf"] Stderr: 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100% |
same issue as described above here with a macbook and osx 10.8.4. |
Reproduced this exact issue as well. Using Ubuntu 12.10, Vagrant 1.2.2 and VirtualBox 4.2.14 r86644. Reverting back to a previous VirtualBox version helps, but I'd like to use 4.2.14 a.s.a.p. ofcourse.. |
Ran into the same issue here. Reverting VirtualBox fixed the situation. Thanks for figuring out the temp fix. |
Same issue here. Reverting helped. |
Same issue. Thought it was due to running 10.9 DP but I guess not. Reverting did at least get me past that stage. |
Downgrading also fixed this for me as well. Cheers. |
It appears that VirtualBox 4.2.14 |
1 of the 3 items in VirtualBox 4.2.14 Changelog may be the culprit
|
Heads up: VirtualBox team is investigating the issue. Looks like there is a problem with importing appliances without manifests. |
@terrywang Great! Let me know if/when they fix it. :) |
@mitchellh Public ticket here => https://www.virtualbox.org/ticket/11895 The problem has already been fix, a maintenance release will be available soon;-) |
downgrade did not help me |
@terrywang Yes, that works perfectly. Thank you. |
@terrywang Worked for my setup as well: CentOS box, vagrant 1.2.2, VirtualBox 4.2.14 r86644 |
@terrywang Worked for me as well. Thanks! |
Using @terrywang solution, I created this quick shell script. Copy and paste the shell script code below into a file and run it to fix any boxes you have in your ~/.vagrant.d directory. I put this in fix-vagrant-manifest. A sample run:
So, run the script:
Now the "vagrant up" command runs.
Here is the script: #!/bin/sh
gen_mf()
{
openssl sha1 *.vmdk *.ovf > box.mf
}
cd $HOME/.vagrant.d/boxes
c=$(pwd)
for i in *
do
if [ -r $i/virtualbox/box.mf ]
then
echo $i already has a manifest. Skipped.
else
cd $i/virtualbox
gen_mf
echo $i manifest generated.
fi
cd $c
done |
@terrywang Worked for me as well, thanks! |
@terrywang thanks for posting, worked here as well. |
@terrywang Thumbs-up, worked for me too! |
Worked for me, thanks! |
FYI VirtualBox 4.2.16 was released today (Indepenence Day): seems to have it fixed overhere. |
VirtualBox 4.2.16 released. I have confirmed (only on Linux x86_64 though) that it (vagrant init - importing base box) works fine with vagrant 1.2.2. |
I confirm that the issue is fixed with VirtualBox 4.2.16. |
Yes, fixed with VirtualBox 4.2.16 |
thanks |
Hi,
I wanted to check out Vagrant for Chef development but it doesn't seem to work.
Installed from scratch:
Did the following, just like the getting started guide:
Then manually ran VBoxManage but didn't get much info from that:
The text was updated successfully, but these errors were encountered: