VirtualBox does not start on Mac OS X

28,553

Solution 1

All your VirtualBox VMs and the application's settings are not stored in the actual .app file. You can try reinstalling it by just running the installer again. This is also how you would update VirtualBox to a newer version.

Your original VMs and settings are stored in ~/VirtualBox VMs, ~/Library/VirtualBox and ~/Library/Preferences, respectively. You can of course make a backup of those if they are really important to you, and if you haven't yet it's really a good time to set up Time Machine.

Solution 2

To resolve this on El Capitan when using Virtualbox versions lower than 6.x run the following from terminal:

for bin in VirtualBox VirtualBoxVM VBoxNetAdpCtl VBoxNetDHCP VBoxNetNAT VBoxHeadless; do
    sudo chmod u+s "/Applications/VirtualBox.app/Contents/MacOS/${bin}"
done

Solution 3

For me, the accepted answer was an unattractive workaround, since re-installing Virtual Box destroys authorization for the Windows Virtual Boxes that I spent a day downloading, installing and setting up for testing apps and websites on different versions of heinous IE.

The core issue is that permissions have become messed up, and Virtual Box is picky about them.

Here is a solution for those who, like me, would rather not spend another wasted day on getting IE testing up and running with Windows in Virtual Box.

  • in Finder, use "Go" to go to this folder: /Applications/VirtualBox.app/Contents/

  • Click on Folder “MacOS”

  • Get info

  • Unlock the lock at the bottom right of the window

  • Make sure only system can read and write

  • Click the gear to apply to all enclosed items

  • close this window

Now Terminal can open Virtual Box:

sudo /Applications/VirtualBox.app/Contents/MacOS/VirtualBox

Virtual Box should launch.

**However, whenever you want VirtualBox to launch, you must use the sudo line above in Terminal, clicking the app still throws the error. **

I'll post an edit if I can get past that. At least pasting that line in Terminal doesn't take a day. Good luck everybody!

Share:
28,553

Related videos on Youtube

ferguior
Author by

ferguior

Updated on September 18, 2022

Comments

  • ferguior
    ferguior over 1 year

    Suddenly and without notice, VirtualBox application doesn't start.

    First, it just didn't do anything. Not even an error message. I looked in the system log (/var/log/system.log) and I found these two messages repeated every time I tried starting VirtualBox:

    [0x0-0xbb0bb].org.virtualbox.app.VirtualBox[4224]: VirtualBox: supR3HardenedVerifyDir: Cannot trust the directory "/Applications/VirtualBox.app/Contents/
    MacOS": group and/or other writable (st_mode=040777)
    com.apple.launchd.peruser.501[237] ([0x0-0xbb0bb].org.virtualbox.app.VirtualBox[4224]): Exited with code: 1
    

    I did some research and found similar problems, most of them indicating problems with permissions. So I found that in order to fix it, I should change the permissions as follows:

    sudo chmod 755 /Applications/VirtualBox.app/Contents/MacOS
    sudo chmod 755 /Applications/VirtualBox.app/Contents/MacOS/components
    

    After that, when trying to start the application I get a pop-up window saying:

    Effective UID is not root (euid=501 egid=20 uid=501 gid=20) (rc=-20)

    Please try reinstalling VirtualBox.

    I would like to avoid that suggestion, as I have many important VMs and I don't want to lose them.

    Then, is there any way to fix this without reinstalling. I haven't found any other good info about this that could solve the problem.

    If there was no other option than reinstalling, is there anyway to backup the VMs? Digging into VirtualBox directory I haven't found anything sounding like a VM package/file containing each VM.

    Regards

    • slhck
      slhck almost 11 years
      Reinstalling the VirtualBox application does not remove your virtual machines, so why not try that? They are not contained in the .app file.
    • ferguior
      ferguior almost 11 years
      D'oh! I didn't know that. Where are they contained by default?
    • Admin
      Admin almost 11 years
      @ferguior I think it's in your user profile.
  • ferguior
    ferguior almost 11 years
    Thanks. Re-installing solved the problem and I kept my VMs. Although, they were under /Users/<username>/VirtualBox VMs.
  • Deborah Speece
    Deborah Speece about 10 years
    This issue is coming up for me when I log into my Mac as a second user, frequently. I'd like to see an actual fix that avoids continual re-installs, since these destroy permissions on Windows virtual boxes that I use as a developer for testing apps and websites in IE. Doesn't anyone have a fix?
  • popcnt
    popcnt almost 9 years
    needed this setuid set on 09-Aug-2015 for El Cap beta (installed VBox 5.0.0 via homebrew cask). Thanks!
  • lje
    lje over 3 years
    This was very helpful. Thanks for posting. Seems like a pretty big miss on VB's part.