Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: few important Xen commands.  (Read 3102 times)

0 Members and 1 Guest are viewing this topic.

Leo.Prince

  • Guest
few important Xen commands.
« on: November 09, 2013, 03:15:49 pm »
Hi,

Xen is a good virtualisation. You can control and modify the VMs using the following commands

Code: [Select]
xm list
To list the VMs in the node

Code: [Select]
xm create -c /path/to/config
Start a virtual machine

Code: [Select]
xm shutdown <VM_name>
Stop a virtual machine.

Code: [Select]
xm destroy <VM_name>
Stop a virtual machine immediately without shutting down. It's as if you switch off the power button.

Code: [Select]
xm console <vm_name>
Log in on a virtual machine.
Code: [Select]
quit: ctrl+]
Code: [Select]
xm help
List of all commands

Thanks :)