Startup/Shutdown Script for vmWare

From KlavoWiki
Revision as of 05:40, 10 September 2007 by David (talk | contribs) (New page: To stop all virtual machines run the following command: <pre> find /var/lib/vmware/ -iname "*.vmx" -exec vmware-cmd {} stop \; </pre> To start all virtual machines run the following comm...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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 \;