~ubuntu-branches/ubuntu/natty/dump/natty

« back to all changes in this revision

Viewing changes to examples/cron_dump_to_disk/README

  • Committer: Bazaar Package Importer
  • Author(s): Bdale Garbee
  • Date: 2002-03-20 01:23:11 UTC
  • Revision ID: james.westby@ubuntu.com-20020320012311-94kbs6nojd19hmd6
Tags: upstream-0.4b27
ImportĀ upstreamĀ versionĀ 0.4b27

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Here is how to use these backup scripts:
 
2
 
 
3
1. Create a separate backup partition big enough to hold all the filesystems you want to backup + any changes. Preferably, get a big inexpensive ide drive, and dedicate it as a backup drive.
 
4
 
 
5
2. Create the mount point for the partition as /backup (otherwise, modify the config parameters at the top of the scripts).
 
6
 
 
7
3. Mount the partition read-write, cd into /backup, and extract the backupskel.tar.gz there. This will create the directory structure needed by the scripts.
 
8
 
 
9
4. Set the partition to be mounted as read-only in your /etc/fstab. This will protect your precious backup from software crashes.
 
10
 
 
11
5. Copy the backup scripts "backup" and "backup_rotate" to a suitable directory in cron's path; "/usr/bin" is a good location. alternatively, you can place them anywhere, and modify the crontab entries to match, or run it manually.
 
12
 
 
13
6. Modify your /etc/crontab file to add these entries, and be sure to modify the times to suit your preferences, and the performance of your machine:
 
14
 
 
15
----------%<---------------------------------%<--------------------------------
 
16
 
 
17
# Perform Nightly Backup (nightly incremental + weekly full + monthly full)
 
18
02 06 * * 1-6 root backup_rotate ; nice -1 backup inc
 
19
02 06 * * sun root backup_rotate ; nice -1 backup full
 
20
07 00 01 * * root backup_rotate monthly ; backup full nodumpdate
 
21
 
 
22
----------%<---------------------------------%<--------------------------------
 
23
 
 
24
Any questions? Send me and email to getnito@yahoo.com.
 
25
 
 
26
And that is it. Have fun!
 
27
 
 
28
--
 
29
nito
 
30
 
 
31
getnito@yahoo.com