skipping non-regular file “vendor/bin/doctrine” skipping non-regular file “vendor/bin/doctrine.php” sent 1990 bytes received 489209 bytes 327466.00 bytes/sec total size is 182515746 speedup is 371.57 原因:source源文件有软链接。 解决方法:修改为 rsync -va,其中 -a == -rlptgoD (no -H,-A,...
的问题 在执行 rsync 时会提示skipping non-regular file 。。。 的内容,原因是原文件夹中包含软链接导致,可以忽略。 rsync -rvtO --delete /media/u2/downloads/ /media/uu2/downloads/ sending incremental file list skipping non-regular file "devsoft/lamp/ZendStudio/zs/jre/lib/amd64/server/libjsig...
如果执行 rsync 时提示skipping non-regular file……,检查下原文件夹中是否包含软链接 修改下脚本文件: rsync -va ... -a == -rlptgoD (no -H,-A,-X)
17、skippingnon-regular file “vendor/bin/doctrine” receivingincremental file list skippingnon-regular file “vendor/bin/doctrine” skippingnon-regular file “vendor/bin/doctrine.php” sent1990 bytes received 489209 bytes 327466.00 bytes/sec total size is 182515746speedup is 371.57 原因: source源文件...
skipping non-regular file "123.txt" ./ 1 2 3 sent 234 bytes received 144 bytes 756.00 bytes/sec total size is 13 speedup is 0.03 上例中使用了-v选项,跳过了非普通文件123.txt。其实123.txt是一个软连接文件,如果不使用-l选项,系统则不理会软连接文件。虽然加-l选项能复制软连接文件,但软连接的...
skipping non-regular file “vendor/bin/doctrine.php”sent 1990 bytes received 489209 bytes 327466.00 bytes/sec total size is 182515746 speedup is 371.57 原因:source源文件有软链接。解决方法:修改为 rsync -va,其中 -a == -rlptgoD (no -H,-A,-X) 或者 rsync -rvltOD 也可以。解决后...
skipping non-regular file"softlink" 嗯,你猜对了,rsync又无情地拒绝了我们。它一旦发现某个文件是软链接,就会无视它,除非我们增加-l选项。 $ rsync -l softlink machineB:/home/userB 使用了-l选项后,rsync会完全保持软链接文件类型,原原本本的将软链接文件复制到目的端,而不会 follow link 到指向的实体...
skipping non-regular file “vendor/bin/doctrine.php” sent 1990 bytes received 489209 bytes 327466.00 bytes/sec total size is 182515746 speedup is 371.57 原因: source源文件有软链接。 解决方法: 修改为rsync-va,其中-a == -rlptgoD(no -H,-A,-X)或者rsync-rvltOD也可以。 解决后: receiving incre...
skipping non-regular file “slink1”Copy Let’s check the contents ofdestination_directory: $ls–l destination_directory/ total 0 -rw-r--r-- 1 alice alice 0 Aug 12 17:43 file1Copy We couldn’t copyslink1since we didn’t use the-loption. ...
skipping non-regular file "name.link"sent 43 bytes received 54 bytes 194.00 bytes/sec total size is 13 speedup is 0.13 使用-l选项就可以同步字符链接文件了,同步后的文件也是一个字符链接文件。 [root@C7 tmp]# rsync -vl name.link /root/name.rsync ...