If you have to temporary use a backup or you want to modify its content, instead or restoring it, you can use chroot.
This example shows 2 different VPS, you can create a second one or an existing one.



In the destination VPS Storage & Backups, you can see the backup disk mounted.

lsblk

In the example above, the target partition is /dev/vdb1
Mount the target partition.
mount /dev/vdb1 /mnt/
âš Please note that systemd-nspawn requiere systemd, that is not compatible using our alpine linux or BSDs distributions.
#Using RedHat like distribution
dnf install systemd-container -y
#Using Debian like distribution
apt update && apt install systemd-container -yq
Using Arch distribution, it is installed in our basic installation.
To use systemd-nspawn, run the following commands.
systemd-nspawn -D /mnt/

exit
umount /mnt
