Homelab #17 Set Up Backups for Proxmox
HOMELAB

Homelab #17 Set Up Backups for Proxmox

Thất Nghiệp Thất Nghiệp
Mar 5, 2026 1 min read 0 views
Back to Blog

One of the three people who inspired me once said this

One of the three people who inspired me once said this

So the next problem we need to solve is Backup and Restore.

Reinitialize the disk

When I did YT dlp, I turned the disk into LVM storage (disk for VMs), so I have to format everything on this disk.

Shut down and detach the disk from the yt dlp LXC

Reinitialize the disk - Shut down and detach the disk from the yt dlp LXC

vgdisplay #Xem tên VG (Volume Group)
lvdisplay #Xem tên LV (Logical Volume)

lvremove /dev/vg-hdd500/vm-112-disk-0 #Xoá LV
vgremove vg-hdd500  #Xoá VG
### Format lại
mkfs.ext4 /dev/sdd
mkdir /mnt/backup-hdd
mount /dev/sdd /mnt/backup-hdd
### Thêm vào fstab để auto-mount
echo "/dev/sdd /mnt/backup-hdd ext4 defaults 0 0" >> /etc/fstab

Configure backup in Proxmox

Back in the Proxmox UI, go to data center -> Storange

Click add and fill in like this

Configure backup in Proxmox - Click add and fill in like this

Configure backup in Proxmox - Click add and fill in like this

Scroll to backup and add

Configure backup in Proxmox - Scroll to backup and add

Choose the settings however you want.

The first backups

Configure backup in Proxmox - The first backups

Share this article

Thất Nghiệp

Written by Thất Nghiệp

A developer sharing thoughts on clean code, creative freedom, and the pursuit of the perfect dev environment. Building digital sanctuaries one component at a time.

Comments

Join the conversation

Leave a comment

Won't be published

You might also like