TOPIC 3

Date: 2/6/2019
Server virtualization with KVM
Linux System Administration


Exercise: Delete VMs ubuntu-18.04 and kvm3


  • To delete a VM, you need, first, to shutdown the VM, then run command virsh undefine for the VM:
    
    virsh undefine kvm3 
    virsh undefine kvm-18.04
    

  • Now you can delete the VM disk images:
    
    rm KVM/kvm3.qcow
    rm /var/lib/libvirt/images/kvm-18.04_2.img
    



  • Take me to the Course Website