Use rsync to backup data

You can use rsync to back up data incrementally.  

To run daily, create a file in /etc/cron.daily called backup

   #backup

   rsync – rtugRO – – exclude-file=/etc/cron.daily/exclude-file  /source  /dest

Create /etc/cron.daily/exlude-file

   . ? *

   exp *

   * : *

Similar Posts