幸福飞过海 - rsync
https://fengqi.me/tag/rsync/
-
[转载]linux下使用rsync同步文件到exfat分区的问题
https://fengqi.me/unix/179.html
2013-12-29T09:50:00+00:00
原文地址: rsync to an exFAT partition in Linux今天在备份东西的时候,使用rsync,提示: rsync: chcon "..." failed: Function not implemented (38).很奇怪的提示, 搜索下才知道, 是权限的问题,我的rsync参数带o p g参数, 这3个参数的作用分别是保持文件所有者,属组,属性的.-p, --perms 保持文件权限
-o, --owner 保持文件属主信息
-g, --group 保持文件属组信息
大致意思是exfat支持问题,去掉就ok了, 例如:rsync -rltDv /from /to