以root身份移动文件,保留所有权linux

时间:2013-08-20 20:39:30

标签: linux shell command-line terminal command

操作系统:Debian。 我希望能够以root用户身份和命令行移动文件和文件夹,而无需更改其所有者和组。 这可能吗?

2 个答案:

答案 0 :(得分:9)

rsync:

 -A, --acls                  preserve ACLs (implies --perms)
 -X, --xattrs                preserve extended attributes
 -o, --owner                 preserve owner (super-user only)
 -g, --group                 preserve group
     --devices               preserve device files (super-user only)
     --specials              preserve special files

man rsync

答案 1 :(得分:6)

mv命令保留所有权和时间戳。 对于cp命令,您可以使用各种命令行选项。例如

cp -p file1 file2

man cp将显示所有可用选项