我只是偶然发现rsync不至少保留ext3“不可变”标志的事实 – 虽然它应该在使用-a,恕我直言时这样做.快速测试案例:
# touch testfile # chattr +i testfile # rsync -a testfile testfile2 # lsattr testfile* ----i---------- testfile --------------- testfile2
rsync的手册页讲述了-a开关:
The files are transferred in “archive” mode,which ensures that symbolic links,devices,attributes,permissions,ownerships,etc. are preserved in the transfer.
有人可以对此有所了解:如果不是底层文件系统的属性,这里的“属性”是什么意思?如果它真的意味着其他东西:是否有可能同步ext3属性?