QEMU
List running VM with a nice view
ps -ef | awk -e '/qemu/ && !/awk/' | sed -e 's/[^/]*//' -e 's/ -/\n\t-/g'
How to kill a VM
List running VMs on the host
ps -ef | grep qemu
Kill the VM
kill <pid_number>
documentation_publique:software:qemu
ps -ef | awk -e '/qemu/ && !/awk/' | sed -e 's/[^/]*//' -e 's/ -/\n\t-/g'
List running VMs on the host
ps -ef | grep qemu
Kill the VM
kill <pid_number>