How to mount a Backup Box as an extra disk with SSHFS
Updated 7/20/2026
A Backup Box gives you cheap storage for backups and files. With SSHFS you mount it as if it were a local disk, encrypted over SSH.
1. Install SSHFS
apt-get update -y
apt-get install -y sshfs
2. Create the mount point
mkdir -p /mnt/backup
3. Mount the Backup Box
Use the address and user from your panel:
sshfs USER@BACKUP_BOX_ADDRESS:/ /mnt/backup
4. Automatic mount at boot
To keep it mounted after a reboot, add to /etc/fstab:
USER@BACKUP_BOX_ADDRESS:/ /mnt/backup fuse.sshfs _netdev,IdentityFile=/root/.ssh/id_ed25519,allow_other 0 0
Use SSH keys so it does not ask for a password.
5. Use it
cp backup.tar.gz /mnt/backup/
Now you can send backups there, see automated backups with cron. Order a Backup Box from the Backup page.
Put this guide into practice on your own VPS
EU cloud servers, billed hourly, ready in minutes, with one-click installs for dozens of apps.
See pricingRelated tutorials
How to encrypt files and backups
Protect sensitive data by encrypting files and backups before storing or transferring them.
Updated 7/20/2026Storage & filesHow to sync files automatically with Syncthing
Syncthing syncs files in real time between servers and devices, encrypted and without an external cloud.
Updated 7/20/2026Storage & filesHow to manage disk space and partitions
See how your disks are organized, mount a new disk and expand space when you need it.
Updated 7/20/2026