Admin-Ahead Community

Linux => Virtualization => Topic started by: Leo.Prince on November 09, 2013, 03:15:49 pm

Title: few important Xen commands.
Post by: Leo.Prince 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 :)