Skip to content

Permanentfrost/add-external-usb-backup-proxmox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Overview

This guide shows how to wipe, format, mount, and register an external USB SSD for backups in Proxmox.

1. Identify the disk

List all disks and find your USB device (e.g. /dev/sdb):

lsblk
fdisk -l

2. Wipe old partition table

wipefs -a /dev/sdb

⚠️ Replace /dev/sdb with your actual disk. This deletes all data.


3. Create new GPT + partition (fdisk method)

fdisk /dev/sdb

Inside fdisk:

g    # new GPT partition table
n    # new partition (accept defaults for full disk)
w    # write changes & exit

4. Format partition as ext4

mkfs.ext4 -L proxmox-backup /dev/sdb1

5. Create mount point

mkdir -p /mnt/usb-backup

6. Auto-mount via fstab

Find UUID:

blkid /dev/sdb1

Edit fstab:

nano /etc/fstab

Add:

UUID=xxxx-xxxx   /mnt/usb-backup   ext4   defaults   0   2

Apply:

mount -a

7. Register in Proxmox GUI

  • Datacenter → Storage → Add → Directory
  • ID: usb-backup
  • Directory: /mnt/usb-backup
  • Content: check Backup only

✅ Now your external USB SSD is ready for Proxmox backups.

About

This guide shows how to wipe, format, mount, and register an external USB SSD for backups in Proxmox.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors