Startup/Shutdown Script for vmWare: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
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... |
m VMWare moved to VMWare Startup/Shutdown Script |
(No difference)
|
Revision as of 12:08, 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 \;