pveperf, pvecm, pve-firewall, qm-nbdstop, qm-stop, vzdump: move location (#13983)

This commit is contained in:
Managor
2024-10-07 22:55:49 +03:00
committed by GitHub
parent 5b6a0dd5fb
commit b5ba068dfd
6 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# pve-firewall
> Manage Proxmox VE Firewall.
> More information: <https://pve.proxmox.com/wiki/Firewall>.
- Compile and print all firewall rules:
`pve-firewall compile`
- Show information about the local network:
`pve-firewall localnet`
- Restart the Proxmox VE Firewall service:
`pve-firewall restart`
- Start the Proxmox VE Firewall service:
`pve-firewall start`
- Stop the Proxmox VE Firewall service:
`pve-firewall stop`
- Simulate all firewall rules:
`pve-firewall simulate`
- Show the status of Proxmox VE Firewall:
`pve-firewall status`

32
pages/linux/pvecm.md Normal file
View File

@@ -0,0 +1,32 @@
# pvecm
> Proxmox VE Cluster Manager.
> More information: <https://pve.proxmox.com/pve-docs/pvecm.1.html>.
- Add the current node to an existing cluster:
`pvecm add {{hostname_or_ip}}`
- Add a node to the cluster configuration (internal use):
`pvecm addnode {{node}}`
- Display the version of the cluster join API available on this node:
`pvecm apiver`
- Generate new cluster configuration:
`pvecm create {{clustername}}`
- Remove a node from the cluster configuration:
`pvecm delnode {{node}}`
- Display the local view of the cluster nodes:
`pvecm nodes`
- Display the local view of the cluster status:
`pvecm status`

8
pages/linux/pveperf.md Normal file
View File

@@ -0,0 +1,8 @@
# pveperf
> A benchmarking tool in Proxmox Server. Gather CPU and hard disk performance data for the hard disk.
> More information: <https://pve.proxmox.com/pve-docs/pveperf.1.html>.
- Show CPU and hard disk performance data for the hard disk mounted at `/`:
`pveperf`

View File

@@ -0,0 +1,8 @@
# qm nbdstop
> Stop embedded nbd server.
> More information: <https://pve.proxmox.com/pve-docs/qm.1.html>.
- Stop embedded nbd server:
`qm nbdstop {{VM_ID}}`

20
pages/linux/qm-stop.md Normal file
View File

@@ -0,0 +1,20 @@
# qm stop
> Stop a virtual machine.
> More information: <https://pve.proxmox.com/pve-docs/qm.1.html>.
- Stop a virtual machine immediately:
`qm stop {{VM_ID}}`
- Stop a virtual machine and wait for at most 10 seconds:
`qm stop --timeout {{10}} {{VM_ID}}`
- Stop a virtual machine and skip lock (only root can use this option):
`qm stop --skiplock {{true}} {{VM_ID}}`
- Stop a virtual machine and don't deactivate storage volumes:
`qm stop --keepActive {{true}} {{VM_ID}}`

28
pages/linux/vzdump.md Normal file
View File

@@ -0,0 +1,28 @@
# vzdump
> Backup Utility for virtual machines and containers.
> More information: <https://pve.proxmox.com/pve-docs/vzdump.1.html>.
- Dump a guest virtual machine into the default dump directory (usually `/var/lib/vz/dump/`), excluding snapshots:
`vzdump {{vm_id}}`
- Back up the guest virtual machines with the IDs 101, 102, and 103:
`vzdump {{101 102 103}}`
- Dump a guest virtual machine using a specific mode:
`vzdump {{vm_id}} --mode {{suspend|snapshot}}`
- Back up all guest systems and send an notification email to the root and admin users:
`vzdump --all --mode {{suspend}} --mailto {{root}} --mailto {{admin}}`
- Use snapshot mode (no downtime required) and a non-default dump directory:
`vzdump {{vm_id}} --dumpdir {{path/to/directory}} --mode {{snapshot}}`
- Back up all guest virtual machines excluding the IDs 101 and 102:
`vzdump --mode {{suspend}} --exclude {{101, 102}}`