Category: Proxmox
-
TASK ERROR: zfs error: could not find any snapshots to destroy; check snapshot names.
Try this: It will give an error but will remove snap from GUI
-
Wireguard site-to-site (proxmox to mikrotik/routeros)
I wanted to connect my dedicated hetzner proxmox box (“remote“) to my home IP. Networks: At home I created on my mikrotik: Then at the remote side, first make keys: We need config: Start interfaces and it works! References
-
Masquerade ip forward for Proxmox on hetzner (single IP)
This works for me: Then open SSH and edit /etc/network/interfaces: Then when creating a container: All traffic is routed properly out of br1 to br0 (world). I can connect to this host on :2222.
-
Fix “Cannot remove image, a guest with VMID ‘xxx’ exists!”
Get this error? Cannot remove image, a guest with VMID ‘1070’ exists!You can delete the image from the guest’s hardware pane Then on your node/host, do Disks will now show up in the vm pane :)
-
Proxmox move progress (container/VM)
Your proxmox will just tell you: 2023-03-26 10:31:50 Logical volume “vm-1070-disk-1” created. But what if you want to know the progress of the copy? In percentage maybe? On the source host, find the dd job: Then do this: kill -USR1 2143046 (We took the PID of the dd job there). Logs will now show how…
-
Proxmox move container/vm to different storage on different host
Container: nohup pct migrate 1076 srv78 –target-storage LVMStore & Untested (VM): qm migrate 1076 srv78 -migration_network 10.0.0.0/24 -targetstorage SrvSSD -with-local-disks Does not want to move? You need to add the shared=1 option on this line. This way the container can be migrated whereby the local mountpoint will be ignored during migration. You need to make…