Estoy tratando de sincronizar un gran directorio de archivos desde mi servidor a un cuadro local. (Ambos ejecutan Ubuntu). Tengo un comando que parece que funciona, pero ciertos archivos no se copian:
phrogz@planar:~$ cat ./sync-phrogz-public
rsync -rztpl --stats --rsh=/usr/bin/ssh 69.46.18.236:/var/www/phrogz.net/public /var/www/phrogz.net/public
phrogz@planar:~$ ./sync-phrogz-public
Number of files: 10320
Number of files transferred: 0
Total file size: 4221864770 bytes
Total transferred file size: 0 bytes
Literal data: 0 bytes
Matched data: 0 bytes
File list size: 197778
File list generation time: 0.001 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 388
Total bytes received: 199213
sent 388 bytes received 199213 bytes 79840.40 bytes/sec
total size is 4221864770 speedup is 21151.52
phrogz@planar:~$ la /var/www/phrogz.net/public/svg/convert*
-rw-r----- 1 phrogz www-admin 6404 2011-02-26 21:49 /var/www/phrogz.net/public/svg/convert_path_to_polygon.xhtml
phrogz@planar:~$ ssh 69.46.18.236 'ls -Fla /var/www/phrogz.net/public/svg/convert*'
-rw-r--r-- 1 phrogz phrogz 1951 2011-12-04 09:07 /var/www/phrogz.net/public/svg/convert_matrix.html
-rw-r--r-- 1 phrogz phrogz 6404 2011-02-26 21:49 /var/www/phrogz.net/public/svg/convert_path_to_polygon.xhtml
Como puede ver, el archivo convert_matrix.html
no se copió.
- ¿Qué está haciendo el comando, si en realidad no está copiando archivos?
- ¿Cómo consigo que realmente copie los archivos?
/var/www/phrogz.net/public/public
?public
como una subcarpeta, yrsync -rztpl --stats --rsh=/usr/bin/ssh 69.46.18.236:/var/www/phrogz.net/public /var/www/phrogz.net
- debería hacerlo.Respuestas:
Podrías simplificar tu comando para
o alternativamente
Como puede ver,
rsync
interpreta de manera diferente una fuente con o sin un final/
.Además,
-a
es equivalente a-rtplogD
(con respecto a su línea de comando,-a
también agrega-o
, preservar propietario-g
, preservar grupo y-D
preservar dispositivos y archivos especiales).Finalmente, la
--rsh
opción es redundante cuando el origen o el destino está en el formulariohost:/path
, con un solo:
.fuente