2025-05-08 12:26:01 -06:00
# virsh undefine
2025-03-14 21:59:59 -06:00
> Delete a virtual machine.
> More information: <https://manned.org/virsh>.
- Delete only the virtual machine configuration file:
`virsh undefine --domain {{vm_name}}`
- Delete the configuration file and all associated storage volumes:
`virsh undefine --domain {{vm_name}} --remove-all-storage`
- Delete the configuration file and the specified storage volumes using the target name or the source name (as obtained from the `virsh domblklist` command):
2025-12-16 10:20:31 -07:00
`virsh undefine --domain {{vm_name}} --storage {{sda,sdb,path/to/source,...}}`