cloudfuseで再同期

cloudfuseで再同期

次のコマンドを使用して、2つのディレクトリ間でrsyncを試しています。

rsync -atO --ignore-existing /src 1.1.1.1:/target/

ターゲットディレクトリは次のようにインストールされます。クラウドサーキットブレーカそして、ソースディレクトリは通常のディレクトリです。

エラーが発生します。

rsync: failed to set times on "/target/somefile": Function not implemented (38) rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1070) [sender=3.0.9]

ベストアンサー1

cloudfuse既存のファイルの修正時間設定は明らかにサポートされていません(「未実装」エラー)。

rsyncしたがって、次のように試みないように指示する必要があります。

rsync -a --no-times --ignore-existing /src 1.1.1.1:/target/

提供したコンテンツが-t暗黙的であるため、-a変換が必要です。去る、したがって--no-times。また、-0*from/filter ファイルを使用しないため意味がありません。

おすすめ記事