Startup/Shutdown Script for vmWare: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
(No difference)
|
Revision as of 12:19, 22 September 2007
To stop all virtual machines run the following command:
find /var/lib/vmware/ -iname "*.vmx" -exec vmware-cmd {} stop \;
To start all virtual machines run the following command:
find /var/lib/vmware/ -iname "*.vmx" -exec vmware-cmd {} start \;