Ich nutze einen raspi 5 mit 2TB M2-SPeicher als NAS. Ich kam jetzt auf die Idee einen backup der Daten mit rclone auf Dropbox zu machen. Das ist mein script:
cat /etc/os-release:
Code
PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"
NAME="Debian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"
VERSION_CODENAME=bookworm
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
Das ist mein script:
Code
local=/media/photo
options= -copy-links -v
# name of rclone configuration fil-u e
config=mariodropbox
# path in dropbox to be used
dropbox_path=/photo
rclone sync $options $local "$config:$dropbox_path"
Ich bekomme als erstes den Fehler:
mit dem Synonym -L ist es dasselbe.
und das führt im weiteren Verlauf zu etlichen Meldungen:
Code
TX4060_53518301/basicadj.cl.bin: Can't follow symlink without -L/--copy-links
2025/02/13 18:16:51 NOTICE: cache/cached_v3_kernels_for_NVIDIACUDANVIDIAGeForceRTX4060_53518301/guided_filter.cl.bin: Can't follow symlink without -L/--copy-links
Kennt der raspi die Option nicht oder will er eine bestimmte Reihenfolger der Optionen?