Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

25
linux/qmrestore Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# qmrestore
> Restore QemuServer vzdump backups.
> More information: <https://pve.proxmox.com/pve-docs/qmrestore.1.html>.
- Restore virtual machine from given backup file on the original storage:
`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}}`
- Overwrite existing virtual machine from a given backup file on the original storage:
`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}} --force true`
- Restore the virtual machine from a given backup file on specific storage:
`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}} --storage {{local}}`
- Start virtual machine immediately from the backup while restoring in the background (only on Proxmox Backup Server):
`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}} --live-restore true`