/proxmox
Source: proxmox-docs Category: Infrastructure
Proxmox VE administration and VM management.
What It Does
- Walks you through VM creation using the documented steps
- Generates network configs based on the actual configuration SOPs
- Helps with backup/restore using the specific procedures documented
- Hardens security following the exact security SOP checklist
- Troubleshoots cluster issues using the documented patterns
- Generates CLI commands for common operations from the quick-ref
Example Usage
Input: "Set up a new VM with 4 cores, 8GB RAM, bridged networking"
Skill Response:
- Gives you the exact commands/steps from the documented VM creation SOP
- Configures networking properly
- Sets up storage
- Handles post-creation tasks
Capabilities
| Action | Description |
|---|---|
| VM Creation | Step-by-step VM setup |
| Network Configuration | Bridge, VLAN, bonding setup |
| Backup/Restore | Scheduled backups and recovery |
| Security Hardening | Follow security SOP checklist |
| Cluster Management | Multi-node cluster operations |
Common Operations
Create VM
bash
qm create 100 --memory 8192 --cores 4 --name myvm
qm set 100 --net0 virtio,bridge=vmbr0
qm set 100 --scsi0 local-lvm:32Backup
bash
vzdump 100 --storage backup-storage --mode snapshotNetwork Bridge
bash
# Edit /etc/network/interfaces
auto vmbr0
iface vmbr0 inet static
address 192.168.1.1/24
bridge-ports eth0Quick Start
/proxmoxSkill will ask what you need to do, then walk you through using the documented SOPs.