화. 7월 22nd, 2025

CLI (Command Line Interface) is essential for efficient operation of Proxmox VE (Virtualization Environment)! We’ve organized 30 core commands by category for advanced tasks, automation, and troubleshooting that cannot be done with the web interface. Check out the detailed usage and examples of each command. — ### 📊 1. System Information and Monitoring Commands for checking the overall status of the Proxmox host. English: 1. **`pveversion`** – Check the installed Proxmox version – Example: `pveversion` → `pve-manager/7.4-3/…` 2. **`pvesubscription get`** – Check subscription status (Enterprise support) 💳 – Example: `pvesubscription get` 3. **`pvesh get /cluster/resources`** – Monitor cluster-wide resource usage – Example: `pvesh get /cluster/resources` 4. **`qm list`** – Print all VM (virtual machine) status – Example: `qm list` → Check VMID, name, status (running/stopped) 5. **`pct list`** – Print all LXC container status – Example: `pct list` — ### 🖥️ 2. Virtual Machine (VM) Management This is a command to control KVM-based virtual machines. 6. **`qm create `** – Create a new VM – Example: “`bash qm create 100 –name “MyVM” –memory 2048 –cores 2 \ –net0 virtio,bridge=vmbr0 –scsi0 local-lvm:10 “` 7. **`qm start `** – Start VM ▶️ – Example: `qm start 100` 8. **`qm stop `** – Force shutdown (power off) VM – Example: `qm stop 100` 9. **`qm shutdown `** – Shutdown VM safely (send ACPI signal) – Example: `qm shutdown 100` 10. **`qm destroy `** – Completely delete VM 🗑️ – Example: `qm destroy 100 –purge` 11. **`qm snapshot `** – Create a VM snapshot 📸 – Example: `qm snapshot 100 “before-update”` 12. **`qm rollback `** – Restore to snapshot – Example: `qm rollback 100 “before-update”` — ### 📦 3. LXC container management Command to operate Linux containers. 13. **`pct create