= Domain Editing = Your domain is virtual hardware. This hardware is described in an XML file. The XML file is stored in `/etc/libvirt/qemu/`. There is one file for each domain. It is possible to use virsh to dump the XML. {{{ virsh dumpxml clone }}} In a physical computer it is not a good idea to replace hardware while the computer is running. The same can be said for the virtual domain. Start by shutting down the guest, then edit the domain. That being said there are many pieces of virtual hardware that can be added while the guest is running. {{{ virsh edit clone }}} == Console == During installation it is usefull to have access to the console of the domain. After the installation this is no longer needed. The following section can be removed from the configuration to disable access to the domain console. {{{#!hilight xml }}} == CPU == Change the number of CPUs in the domain. {{{ 8 }}} == Memory == Increase or decrease the memory by editing this line. {{{ 1048576 1048576 }}} == Disk == This is how we add an additional 16G harddisk to a domain, while the domain is running. Create the new volume. {{{ lvcreate --size 16G --name kvm_clone_vdb vg_storage }}} Add the disk to the domain. {{{ virsh attach-disk clone --source /dev/vg_storage/kvm_clone_vdb --target vdb --persistent }}} == Network Interface == Check your MAC address {{{ }}}