From 667ac2c125b9625f7702f521b9b51ee58485a1bb Mon Sep 17 00:00:00 2001 From: Yunobot Date: Tue, 16 Jun 2020 19:48:10 +0000 Subject: [PATCH] Added missing step to create the directory on the external backup drive: https://forum.yunohost.org/t/error-connecting-a-usb-drive-for-backup/11877 --- backup.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backup.md b/backup.md index 9cffbdd6..c7193123 100644 --- a/backup.md +++ b/backup.md @@ -122,8 +122,9 @@ If you want, you can connect and mount an external drive to store backup archive ```bash PATH_TO_DRIVE="/media/my_external_drive" # For instance, depends of where you mounted your drive -mv /home/yunohost.backup/archives $PATH_TO_DRIVE/yunohost_backup_archives -ln -s $PATH_TO_DRIVE/yunohost_backup_archives /home/yunohost.backup/archives +mkdir $PATH_TO_DRIVE/yunohost_backup_archives # On your external drive create the folder where the backups will go +mv /home/yunohost.backup/archives $PATH_TO_DRIVE/yunohost_backup_archives # Move the archive folder including existing backups (if you made them) to the new folder on the external drive +ln -s $PATH_TO_DRIVE/yunohost_backup_archives /home/yunohost.backup/archives # Create a symbolic link from the old local folder to the new folder on the external drive ``` ### Automatic backups