Startup/Shutdown Script for vmWare: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
No edit summary |
|||
Line 1: | Line 1: | ||
To stop all virtual machines run the following command: | To stop all virtual machines hosted on a Linux Operating System run the following command: | ||
<pre> | <pre> |
Revision as of 10:52, 3 March 2008
To stop all virtual machines hosted on a Linux Operating System 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 \;