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