13,420
edits
Changes
no edit summary
* '''Properly backup VMs and VM configuration''' in virtual manager application onto home directory and to external source (USB Key)
* Observe how '''Bash Shell Scripting''' can be used to automate routine tasks involving VM management
== Managing Virtual Machines ==
Can manipulate the Virtual Machines via command line (i.e. instead of Virtual Machine Manager, although that program must be running).
Common commands:
*'''virsh list''' (only lists only running VMs)
*'''virsh list --all''' (lists running and non-running VMs)
*'''virsh list --inactive''' (lists only non-running VMs)
*'''virsh start centos1''' (starts VM named "centos1")
*'''virsh stop centos3''' (stops VM named "centos3" , although best to shut-down under normal methods)
== Common Mistakes / Warnings ==