You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I downloaded rsync-time-machine.py and tried the following:
someuser@pureos:~/tmp/backup$ ./rsync_time_machine.py '[email protected]:/data' target
rsync-time-machine.py: [ERROR] Source folder '/data' does not exist - aborting.
But I'm quite sure the source folder does exist:
someuser@pureos:~/tmp/backup$ ssh '[email protected]' ls -ld /data
drwxr-xr-x 5 root root 4096 3. Sep 19:56 /data
someuser@pureos:~/tmp/backup$ ssh '[email protected]' ls -l /data
insgesamt 12
drwxr-xr-x 6 root root 4096 16. Sep 2022 home
drwxr-xr-x 5 root root 4096 12. Sep 16:25 opt
drwxr-xr-x 14 root root 4096 30. Aug 2022 var
I then thought that the script maybe looks for the folder locally on my system instead of checking the existence on the remote system and tried the following:
someuser@pureos:~/tmp/backup$ ./rsync_time_machine.py '[email protected]:/data' target
rsync-time-machine.py: Safety check failed - the destination does not appear to be a backup folder or drive (marker file not found).
rsync-time-machine.py: If it is indeed a backup folder, you may add the marker file by running the following command:
rsync-time-machine.py: ssh -p 22 [email protected] 'mkdir -p -- "target" ; touch "target/backup.marker"'
someuser@pureos:~/tmp/backup$ ls target/backup.marker
target/backup.marker
Seems to indicate that the source folder when backing up from a ssh source seems to be checked locally.
The text was updated successfully, but these errors were encountered:
I downloaded
rsync-time-machine.py
and tried the following:But I'm quite sure the source folder does exist:
I then thought that the script maybe looks for the folder locally on my system instead of checking the existence on the remote system and tried the following:
Seems to indicate that the source folder when backing up from a ssh source seems to be checked locally.
The text was updated successfully, but these errors were encountered: