Slashdot Mirror


Linux Backups Made Easy

mfago writes "A colleague of mine has written a great tutorial on how to use rsync to create automatic "snapshot-style" backups. Nothing is required except for a simple script, although it is thus not necessarily suitable for data-center applications. Please try to be gentle on his server: it is the $80 computer that he mentions in the tutorial. Perhaps try the Google cache." An excellent article answering a frequently asked question.

5 of 243 comments (clear)

  1. Critical daily backups done by the clueless. by Anonymous Coward · · Score: 1, Funny

    And people wonder why computer techs get a bad name.

  2. Backups are for wimps by Anonymous Coward · · Score: 1, Funny

    Backups are for wimps. Real men upload their data to an FTP site and have everybody else mirror it.

  3. why get so complex? by ywwg · · Score: 3, Funny

    if [ `df |grep /mnt/backup |wc -l` != "1" ]
    then
    echo Backup drive not mounted, skipping procedure
    exit 2
    fi
    cd /mnt/backup
    rsync -vaz --exclude-from=/root/exclude $1 $2 $3 $4 $5 / .


    where exclude =
    /mnt/cdrom /mnt/usb /mnt/backup /mnt/abyss1 /mnt/abyss2 /proc /tmp


    stick in a cronjob. you can also add --delete if you want. it's basic, but easy.
  4. Re:Because Linus says dump isn't reliable. by Anonymous Coward · · Score: 1, Funny

    This isn't a bug; it's a design issue.

  5. Re:i've been slashdotted! by soloport · · Score: 3, Funny

    I know that listing my actual backup configuration here is a security risk; please be kind and don't use this information to crack my site. However, I'm not a security expert, so if you see any vulnerabilities in my setup, I'd greatly appreciate your help in fixing them. Thanks!

    First suggestion: Don't list your actual backup configuration.