Skip to content

Instantly share code, notes, and snippets.

@adeolaawoyemi
Created November 26, 2013 14:46
Show Gist options
  • Save adeolaawoyemi/7659524 to your computer and use it in GitHub Desktop.
Save adeolaawoyemi/7659524 to your computer and use it in GitHub Desktop.
When starting up a vagrant vm on Mac OS X Mavericks, you may get errors like "VBoxManage: error: VBoxNetAdpCtl: Error while adding new interface: failed to open /dev/vboxnetctl: No such file or directory" as described in this stackoverflow thread: http://bit.ly/1ennuVK. So I don't have to do it every time I restart, I created a launchd item to d…
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.virtualbox</string>
<key>ProgramArguments</key>
<array>
<string>/Library/StartupItems/VirtualBox/VirtualBox</string>
<string>restart</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment