I heard you like headless VMs on your Mac so I wrote this script for your launchds.
- Tested on Mac OS X 10.6.4 with VMware Fusion 2.0.5 and 3.1.1.
- A interactive user automatically logs into the system at startup. I had some issues trying to get this running without an interactive user logged in. I automatically log in for Airfoil Speakers anyway.
- Your virtual machines live in
/Virtual Machines
- Place the
vmdaemonscript into/Virtual Machinesand make it executable (sudo chmod 755 vmdaemon) and owned by root (sudo chown root:wheel vmdaemon). - Copy the template plist into
/Virtual Machines. The plist should also bechmod 644andchown root:wheel. - For each VM you want to run headless, copy the
templateproperty list file and change the filename, label and 2nd program argument to match your VM name. - Symlink the plist into
/Library/LaunchDaemons - Run
launchctl load -w $PLISTto start the VM. - Use
launchctl unload -w $PLISTto initiate a graceful shutdown of the VM. By default it will wait up to 5 minutes for the VM to shutdown. This can be configured inExitTimeOutin the plist
If you try this out with your own setup, I'd like to hear how things go. Patches via gist forks are welcome.
- Jason Weathered (@jasoncodes)
Thanks. This, and the fact that vmrun is now located at "/Applications/VMware Fusion.app/Contents/Library/vmrun" helped me a lot.
I created a symlink to vmrun for easier access: 'ln -s "/Applications/VMware Fusion.app/Contents/Library/vmrun" /usr/local/bin/vmrun'