lxfr
@lxfr

RSYNC — как выкачивать файлы без обратной синхронизации?

Есть такая программа rsync которая позволяет синхронизировать 2 папки на разных серверах через SSH.
Я сейчас запускаю ее так, например:
rsync -rvz user@myserver://info /home/user/backup/info
параметры r - рекурсия,v-дебаг,z-сжатие...

Таким образом все что хранится на сервере в папке /info копируется (а если быть точным - синхронизируется) с папкой на моей машине /home/user/backup/info

Но как сделать так чтобы если на сервере кто то нажмет rm -Rf /info* у меня на машине файлы не стерлись после "синхронизации"?
  • Вопрос задан
  • 887 просмотров
Решения вопроса 1
BuriK666
@BuriK666
Компьютерный псих
По умолчанию он не удаляет файлы, для этого есть опция --delete
--delete
This tells rsync to delete extraneous files from the receiving side (ones that aren’t on the sending side), but only for the directories that are being synchronized. You must have asked rsync to send the whole direc‐
tory (e.g. "dir" or "dir/") without using a wildcard for the directory’s contents (e.g. "dir/*") since the wildcard is expanded by the shell and rsync thus gets a request to transfer individual files, not the files’
parent directory. Files that are excluded from the transfer are also excluded from being deleted unless you use the --delete-excluded option or mark the rules as only matching on the sending side (see the
include/exclude modifiers in the FILTER RULES section).

Prior to rsync 2.6.7, this option would have no effect unless --recursive was enabled. Beginning with 2.6.7, deletions will also occur when --dirs (-d) is enabled, but only for directories whose contents are being
copied.

This option can be dangerous if used incorrectly! It is a very good idea to first try a run using the --dry-run option (-n) to see what files are going to be deleted.

If the sending side detects any I/O errors, then the deletion of any files at the destination will be automatically disabled. This is to prevent temporary filesystem failures (such as NFS errors) on the sending side
from causing a massive deletion of files on the destination. You can override this with the --ignore-errors option.

The --delete option may be combined with one of the --delete-WHEN options without conflict, as well as --delete-excluded. However, if none of the --delete-WHEN options are specified, rsync will choose the --delete-dur‐
ing algorithm when talking to rsync 3.0.0 or newer, and the --delete-before algorithm when talking to an older rsync. See also --delete-delay and --delete-after.
Ответ написан
Комментировать
Пригласить эксперта
Ответы на вопрос 1
@hubbiton
Не сотрутся, проверено лично. Попробуйте сами для уверенности, удаляя с сервера какие-нить файлы, а потом синхронизируйте и убедитесь, что в бекапе они остались.
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы