Virsh notes =========== Commands -------- | List all VMs ``virsh list --all`` | Start a vm ``virsh start [vm name]`` | Stop a vm ``virsh destroy [vm name]`` | Remove a vm (does not remove .vmdk) ``virsh undefine [vm name]`` | Create a vm ``virsh define [vm name].xml`` Create and resize kvm image --------------------------- | Create KVM image ``qemu-img create -f raw vm-example.img 20G`` | Resize KVM image ``qemu-img resize vm-example.img +30G`` Build vm --------- | Build a vm named vm-example, mount debian 12 iso and connect to bridge br0. | osinfo can be found with ``virt-install --osinfo list`` :: virt-install --name vm-example --osinfo debian11 --ram 2048 --vcpus 2 --disk path=/root/vm-example/vm-example.img,bus=virtio,size=20 --graphics none --cdrom /root/iso/debian-12.5.0-amd64-DVD-1.iso --network bridge:br0 | Another example named windows11. This will also create the disk with size 60. To install virtio drivers you will need to edit the vm ``virsh edit windows11``. :: sudo virt-install --name windows11 --osinfo win11 --ram 4096 --vcpus 4 --disk path=/root/vm-example/windows11.qcow2,format=qcow2,bus=virtio,size=60 --graphics none --cdrom /root/vm-example/Win11_24H2_English_x64.iso --boot cdrom,hd --network bridge:br0 --graphics vnc,listen=0.0.0.0 Setup new VM ------------ | Attach disk, enable VNC, and set boot order after setup (virsh edit [vm name]). Add these into the xml file. Disable vnc and remove iso after completion. | #### Attach disk :: .. code-block:: xml
#### Enable VNC (virsh edit [vm name]) :: #### Add cdrom into boot order :: #### VNC into machine and finish setup ``virsh domdisplay vm-name`` | #### Setup virsh console | ``systemctl enable serial-getty@ttyS0.service`` | ``systemctl start serial-getty@ttyS0.service`` Creating a VM from an existing template ---------------------------------------- | The steps for this are the same as above, however make these changes to the template | #Change vm name | #Change UUID - randomize | #Change RAM | #Change CPU | #Change hdd location | #Increment mac address by one or change to reflect vlan Fix Debian bridge forwarding issues ----------------------------------- | While setting up a virtual machinge on Debian 12 using KVM/Libvrt and Virsh I found that all of my VMs could connect via IPv6, but not via IPv4. I found the solution was to uncomment these two lines in /etc/sysctl.conf | ``net.ipv4.ip_forward=1`` | ``net.ipv6.conf.all.forwarding=1``