PVE destroys virtual machines in batches
Original link: https://blog.frytea.com/archives/771/ All QEMU virtual machines can be deleted at once with the following command: serial qm list | awk ‘NR>1 {print $1}’ | xargs -I {} qm destroy {} explain: The qm list command gets a list of all virtual machines. awk ‘NR>1 {print $1}’ command skips the first line (header) and extracts […]
PVE destroys virtual machines in batches Read More »