复制文件而不更改所有者

PSS*_*Sim 4 backup debian files

如何/var/www在不更改文件夹中/var/www文件夹所有者的情况下将所有文件复制到闪存盘上?(或如何将整个/var/www文件夹插入存档并将其放入闪存盘)

我的系统:

Debian 6(Linux PSB1 2.6.32-5-686 #1 SMP Mon Sep 23 23:00:18 UTC 2013 i686)

Tob*_*ias 8

cp -rp /var/www/ /path/to/flash/disk/
Run Code Online (Sandbox Code Playgroud)

从 cp 联机帮助页:

-p     same as --preserve=mode,ownership,timestamps

--preserve[=ATTR_LIST]
      preserve the specified attributes (default: mode,ownership,timestamps),
      if possible additional attributes: context, links, xattr, all
Run Code Online (Sandbox Code Playgroud)