@H_403_1@我在
Linux服务器上安装了远程文件系统的sshfs连接.我正在从本地服务器到ftpfs-filesystem进行Rsync.由于此设置的性质,我无法在sshfs文件系统上添加任何内容.
当我执行Rsync时,它会在传输后尝试将所有文件chown.这会导致chown错误,即使它传输文件很好.
使用Rsync,有没有办法告诉它不要尝试和chown文件?如果我像1000个文件一样rsync,我最终会得到一个1000 chown的日志:权限被拒绝(错误13)错误.我知道,由于文件的所有权由sshfs配置本身决定,因此获取这些错误并不会造成任何损害.但是没有得到它们会很好.
解决方法
您可能正在运行rsync,如下所示:
rsync -a dir/ remote:/dir/
-a选项according to the documentation相当于:-rlptgoD
-a,--archive archive mode; equals -rlptgoD (no -H,-A,-X)
您可能想要删除-o和-g选项:
-o,--owner preserve owner (super-user only) -g,--group preserve group
所以你的rsync命令看起来应该是这样的:
rsync -rlptD dir/ remote:/dir/
或者作为@glglgl指出:
rsync -a --no-o --no-g dir/ remote:/dir/
其余使用的选项是:
-r,--recursive recurse into directories -l,--links copy symlinks as symlinks -p,--perms preserve permissions -t,--times preserve modification times -D same as --devices --specials --devices preserve device files (super-user only) --specials preserve special files