権限と所有権を含むフォルダの完全なレプリカを作成したいと思います。
私は次のコマンドを使用しています:
rsync -a <source> <destination>
同期によってルートのみアクセスできるファイルの一部が失われました。すべてを備えた完璧なクローンをどのように作成できますか?
答え1
sudo rsync -aHAX --delete <source> <destination>
sudo
root権限を取得します。
そして次からman rsync
:
--archive, -a archive mode; equals -rlptgoD (no -H,-A,-X)
--hard-links, -H preserve hard links
--acls, -A preserve ACLs (implies --perms)
--xattrs, -X preserve extended attributes
--delete delete extraneous files from dest dirs