Wednesday, May 13, 2009

Syncronization data using rsync

Backup ...

As an IT, the data is important and must be on guard.
One of the important issues that need to be done is backup all the data.
Many ways to make a backup, can use the program / application that is already there.
The easiest way is copying the data to another partition or other media.
But Linux has tools / backup command with the syncronisasi.
That is "rsync".

Usage:
# rsync --(option) (source) (destination)

Example:


# rsync --delete-during /home/bastian/* /backup/

option - delete-during data = copy and delete data at the same time.

To use can be seen in the manual of rsync.

# Man rsync

Appropriate with the case.

1 comment: