次のコマンドを使用して、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 ファイルを使用しないため意味がありません。