diff options
author | Pjotr Prins | 2024-02-18 17:02:49 +0100 |
---|---|---|
committer | Pjotr Prins | 2024-02-18 17:02:49 +0100 |
commit | 45ba64cd92b2f2996a3e82d54905044265f1995c (patch) | |
tree | ad5103e47c037475ef760504f18bcd8b68b1a9aa /topics/systems/backup-drops.gmi | |
parent | 40959b8cabb3b7cd86289c3c0ebc8bd8d29852e9 (diff) | |
download | gn-gemtext-45ba64cd92b2f2996a3e82d54905044265f1995c.tar.gz |
Some notes on backup drops
Diffstat (limited to 'topics/systems/backup-drops.gmi')
-rw-r--r-- | topics/systems/backup-drops.gmi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/topics/systems/backup-drops.gmi b/topics/systems/backup-drops.gmi index 91631f6..191b185 100644 --- a/topics/systems/backup-drops.gmi +++ b/topics/systems/backup-drops.gmi @@ -112,6 +112,20 @@ chmod 0700 backup/bacchus/drop/ If auth.log says error: /dev/pts/11: No such file or directory on ssh, or received disconnect (...) disconnected by user we are good to go! +Note: at this stage it may pay to track the system log with + +``` +journalctl -u ssh -f +``` + +and, in a pinch, increase DEBUG output in sshd_config with + +``` +LogLevel DEBUG3 +``` + +In my case I had to disable PAM! + Next try sshfs ``` @@ -124,6 +138,10 @@ touch ~/mnt/dropserver/drop/HELLO And the remote directory should be ready for dropping files! +``` +rsync -vrltDP /export2/backup/borg/borg-tux01 ~/mnt/balg01/drop/ --delete +``` + To unmount the dir ``` |