From: Jeffrey R. <je...@bu...> - 2004-04-28 21:58:55
|
I'm looking for some suggestions on how to perform backups and utilizing the different dump levels. I'm looking to back up my personal machine, obviously the system file systems do not change much ( / /var /usr) however the user filesystem (/home) can have a handfull of small changes daily. What tape schedule, dump level rotation do you use, how would you recommend I go about figuring out what would work well for me? This is probably a FAQ question.... TIA Jeff |
From: Stelian P. <st...@po...> - 2004-04-30 12:05:02
|
On Wed, Apr 28, 2004 at 05:58:44PM -0400, Jeffrey Ross wrote: > I'm looking for some suggestions on how to perform backups and utilizing > the different dump levels. > > I'm looking to back up my personal machine, obviously the system file > systems do not change much ( / /var /usr) however the user filesystem > (/home) can have a handfull of small changes daily. > > What tape schedule, dump level rotation do you use, how would you > recommend I go about figuring out what would work well for me? > > This is probably a FAQ question.... The answer to your question is depending on how much tapes you want to use, how convenient is for you to make backups, how much data change and how often... You have a good tape rotation example in the dump man page towards the end. You can simplify that example by doing each day of the week a level-2 dump instead of the full Hanoï sequence (3 2 5 4 7), this way you'll have only 3 backups: the full one (to be taken depending on how much data change, once a month or once a year), the level-1 one to be taken once a week and the level-2 which has the up-to-date changes since the latest weekly dump. Stelian. -- Stelian Pop <st...@po...> |
From: Antonios C. <an...@it...> - 2004-04-30 16:06:00
Attachments:
backup
|
Jeffrey Ross wrote: > I'm looking to back up my personal machine, obviously the system file > systems do not change much ( / /var /usr) however the user filesystem > (/home) can have a handfull of small changes daily. > > What tape schedule, dump level rotation do you use, how would you > recommend I go about figuring out what would work well for me? > > This is probably a FAQ question.... No, this is not a FAQ; in fact, personal machines are harder to backup, because: (a) Backup media is usually of very low capacity, such as CD or DVD. (b) Designing a backup plan is not trivial. While working for a month or so to design the backup plan for a server or a cluster of servers is reasonable, you obviously won't spend that much time for a personal machine. In other words, personal machines don't have enough human resources (unless backup somehow fascinates you and you want to have fun with it :-) Your schedule will depend on the capacity of your media. I'm attaching the script I was using at home until recently to backup my home machine on CD. You run it like this: backup 0 (performs a full backup) backup 1 (performs a level 1 backup) etc. Full backup is always written on a new CD, whereas higher level backups always append a session to an existing CD. When I go out of CD space, I start a new CD with a full backup again. In /etc/backup/excludes you specify directories that should not be backed up. These should be anything useless or whatever the OS can easily reinstall or recreate, namely /tmp, /var/tmp, /var/cache, and most directories under /usr except /usr/local. I also have some directories in my home directory that are too large (and relatively easy to recreate) to backup. There's no schedule; you run it whenever you remember it. If you like it, you'll certainly have to modify it so that it suits your needs. I'm not using it any more, because I now use "unison" to synchronize my important files with the file server at work, which is saved every night on tape. |
From: Dick V. <di...@ti...> - 2004-05-01 12:16:04
|
On Fri, 30 Apr 2004, Antonios Christofides wrote: > No, this is not a FAQ; in fact, personal machines are harder to backup, I always have a hard time explaining to customers that backing up desktop machines is more complicated than servers. Desktop machines are a commodity that people think is trivial to backup. Servers on the other hand are thought of as complicated, high tech devices that require black magic for backing up. The reality is just the other way around ;) -- * *** Dick Visser ** * * TIENHUIS Networking * * *** Marco Polostraat 234-3 P: +31206843731 * * * * 1056 DP Amsterdam F: +31208641420 * ** * The Netherlands M: +31622698108 * * * WWW: http://www.tienhuis.nl * * * Email: d.n...@ti... *** *** PGP-key: http://www.tienhuis.nl/gpg.txt Live webcam (WM9): http://www.terena.nl/~dick/cam2.asx |