Hi, Rsync. rsync version 3.0.9 protocol version 30
rsync -a --exclude="tmp/*" /home/ /backup/home/ It is necessary that the contents of the folder tmp copy, but the folder tmp in backup was created. If the folder /home/tmp/ is many millions of files, rsync think of this folder can be seen through the lsof -p PID If you do so: rsync -a --exclude="tmp/" /home/ /backup/home/ then backup is done very quickly, but tmp folder in the backup does not will be created. How to make so that rsync long thought over such folders, but This created a backup of them empty? ====================================================================== Нужно чтобы содержимое папки tmp не копировалось, но сама папка tmp в бекапе создавалась. Если в папке /home/tmp/ находится много миллионов файлов, rsync думает над этой папкой это видно через lsof -p PID Если сдлать так: rsync -a --exclude="tmp/" /home/ /backup/home/ то бекап делается очень быстро, но при этом папка tmp в бекапе не появляется. Как сделать так чтобы rsync долго не думал над такими папками, но при этом создавал их пустыми в бекапе? -- С уважением, Дугин Сергей mailto:[email protected] QWARTA -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
