HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

qm wait — Wait until the virtual machine is stopped. More information: <https://pve.proxmox.com/pve-docs/qm.1.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thevirtualcommandwaitcliqm waituntilmachine
linux

Problem

How to use the qm wait command: Wait until the virtual machine is stopped. More information: <https://pve.proxmox.com/pve-docs/qm.1.html#cli_qm_wait>.

Solution

qm wait — Wait until the virtual machine is stopped. More information: <https://pve.proxmox.com/pve-docs/qm.1.html#cli_qm_wait>.

Wait until the virtual machine is stopped:
qm {{[w|wait]}} {{vm_id}}


Wait until the virtual machine is stopped with a 10 second timeout:
qm {{[w|wait]}} --timeout {{10}} {{vm_id}}


Send a shutdown request, then wait until the virtual machine is stopped with a 10 second timeout:
qm {{[shu|shutdown]}} {{vm_id}} && qm {{[w|wait]}} --timeout {{10}} {{vm_id}}

Code Snippets

Wait until the virtual machine is stopped

qm {{[w|wait]}} {{vm_id}}

Wait until the virtual machine is stopped with a 10 second timeout

qm {{[w|wait]}} --timeout {{10}} {{vm_id}}

Send a shutdown request, then wait until the virtual machine is stopped with a 10 second timeout

qm {{[shu|shutdown]}} {{vm_id}} && qm {{[w|wait]}} --timeout {{10}} {{vm_id}}

Context

tldr-pages: linux/qm wait

Revisions (0)

No revisions yet.