For backups, I like incremental mirroring (using rsync) from disk to
disk on a daily basis.  Under Linux, every night at 3am, a
cron job runs the following backup script:   <br>
<br>
<span style="font-family: courier new,monospace;">  #!/bin/csh -f</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  # This file goes in /etc/cron.daily/</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">  # The following link must be set up in /:</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  setenv BKP /bkp/</span>
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">  # mirror-like bkp for all evolving Linux partitions:</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
  rsync -a /etc /home /root /usr/local $BKP</span><br><br>To
arrange this, I merely added the script to
/etc/cron.daily/.   The directory /bkp/ is a link to a
separate backup drive.<br><br>I use a similar script to back up to another computer over the Net, where the rsync line is instead<br>
<br><span style="font-family: courier new,monospace;">rsync -e /usr/bin/ssh -rlptvvuz <dirs> <remotehost>:~/ | \</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
   perl -e "while (<>) { print unless m/uptodate/ }"</span><br><br>With all this mirroring, I only need to make DVDs/CDs when I want to move something offline.<br><br>Julius<br><br>On 9/3/05, Paul Smith <
<a href="mailto:phhs80@gmail.com">phhs80@gmail.com</a>> wrote:<br>> Dear All<br>> <br>> I am looking for a nice program to make backups from the relevant<br>> directories on my hard disk to a dvd+rw. Any suggestions?
<br>> <br>> Thanks in advance,<br>> <br>> Paul<br>> <br>> --<br>> fedora-list mailing list<br>> <a href="mailto:fedora-list@redhat.com">fedora-list@redhat.com</a><br>> To unsubscribe: <a href="http://www.redhat.com/mailman/listinfo/fedora-list">
http://www.redhat.com/mailman/listinfo/fedora-list</a><br>> <br>