2つの外付けドライブ間で写真ライブラリをミラーリングするためのrsyncエラーcom.apple.quarantine許可が拒否されました


0

私は私のMac book proの中に収まらない巨大なフォトライブラリ(約400 GB)を持っています。私は自分のライブラリを保存するのにusbディスクを使い、rsyncを使ってライブラリを同期させるドライブを2つ追加しています。

これが私のrsyncコマンドです。

./rsync -aNHAX --delete --fileflags -q --human-readable --itemize-changes --rsync-path=/Users/olmo/rsync --exclude '.*' /Volumes/DATOS\ 1/ /Volumes/DATOSbackup/

私の2つのバックアップドライブは同じと呼ばれるので、私は接続された各バックアップドライブで同期を2回(一度に1つ)実行します。

バックアップはうまくいっています。バックアップドライブのライブラリを開くことができます。

しかし、rsyncから同期中にエラーメッセージが表示されます。

DEBUG: [dfcc: sender] Effective UID is 503 for /Volumes/DATOS 1/
DEBUG: [sender] Fileflags mask for /Volumes/DATOS 1/: 458752
DEBUG: [dfcc: sender] Setting effective UID back to 503 for source
DEBUG: [dfcc: receiver] Effective UID is 503 for /Volumes/DATOSbackup/
DEBUG: [receiver] Fileflags mask for /Volumes/DATOSbackup/: 458752
DEBUG: Max xattr size for the destination filesystem is 2147483647 bytes
DEBUG: [dfcc: receiver] Setting effective UID back to 503 for dest
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKFace/0000000009.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKMaster/0000000001.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKSceneInVersion/0000000003.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKVersion/0000000048.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKVersion/0000000049.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKVersion/0000000050.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKVersion/0000000051.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKVersion/0000000052.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync: rsync_xal_set: lsetxattr("/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKVersionAnalysisState/0000000001.lij","com.apple.quarantine","28") failed: Permission denied (13)
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1385) [sender=3.0.6]

DESTINATIONドライブ上のこれらのファイルから隔離フラグを削除しようとしましたが、エラーが解決しませんでした。これが私がしたことです:

sudo xattr -dr com.apple.quarantine "/Volumes/DATOSbackup/Photos Library.photoslibrary/resources/recovery/RKVersionAnalysisState/0000000001.lij"

私の質問は:

  1. ファイルが隔離としてマークされているのはなぜですか?
  2. 写真ライブラリ全体の真のミラーを作成できるようにするには、どうすればよいですか。

ご協力いただきありがとうございます

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.