Re: Best procedure for full backup of live system

2009-10-17 Thread Michael David Crawford
Nerius Landys wrote: dd if=/dev/ad4 of=MBR_backup bs=512 count=1 to back up the MBR, so I can recontruct the boot program and partition table. But they don't mention that in the Handbook. While that will back up the Master Boot Record, it's not sufficient for the general case of MS-DOS

Re: Best procedure for full backup of live system

2009-10-16 Thread Nerius Landys
Thanks again guys.  My final series of steps to take full backups: bsdlabel ad4s1| ssh -p 2 nlan...@localhost dd of=/home/nlandys/backup/bsdlabel_ad4s1 dmesg -a | ssh -p 2 nlan...@localhost dd of=/home/nlandys/backup/dmesg dd if=/dev/ad4 bs=512

Re: Best procedure for full backup of live system

2009-10-16 Thread Matthew Seaman
Warren Block wrote: Lastly, it says save all boot messages. Do they mean the output of dmesg? Why is this useful? It would show what hardware was in the old machine and what services are running on startup. Backup in general is making copies of information you won't need as long as you

Re: Best procedure for full backup of live system

2009-10-16 Thread Warren Block
On Fri, 16 Oct 2009, Nerius Landys wrote: Thanks again guys.  My final series of steps to take full backups: bsdlabel ad4s1| ssh -p 2 nlan...@localhost dd of=/home/nlandys/backup/bsdlabel_ad4s1 dmesg -a | ssh -p 2 nlan...@localhost dd

Re: Best procedure for full backup of live system

2009-10-16 Thread Jerry McAllister
On Fri, Oct 16, 2009 at 12:12:56AM -0700, Nerius Landys wrote: You can do all this though it might be more than needed. Only the level 0 dumps are needed. Thanks again guys.  My final series of steps to take full backups: bsdlabel ad4s1| ssh -p 2 nlan...@localhost

Re: Best procedure for full backup of live system

2009-10-16 Thread Polytropon
On Thu, 15 Oct 2009 21:47:57 -0600 (MDT), Warren Block wbl...@wonkity.com wrote: Just a general note: backup to a hard drive isn't bad, but it's not the same as removable media. One failure can kill all of your backups... That's why it's often a good choice two have at least two hard disks

Re: Best procedure for full backup of live system

2009-10-15 Thread Steve Bertrand
Nerius Landys wrote: My server is increasingly having important work stored on it, and I need to start taking backups of a lot of directories, especially /home, /opt, /etc, /usr/local/etc, and maybe others. The ideal backup (and what I've done in the past) is to take a full low-level dd image

Re: Best procedure for full backup of live system

2009-10-15 Thread Jerry McAllister
On Wed, Oct 14, 2009 at 08:42:47PM -0700, Nerius Landys wrote: My server is increasingly having important work stored on it, and I need to start taking backups of a lot of directories, especially /home, /opt, /etc, /usr/local/etc, and maybe others. The ideal backup (and what I've done in the

Re: Best procedure for full backup of live system

2009-10-15 Thread Nerius Landys
Thanks for your help guys. I have decided to attempt the following. With a filesystem snapshot, take a dump 0 of all filesystems. Back up these dumps to a 500GB disk I have sitting at home (the server I'm backing up is in a data center). Perform this maybe once a week or once a month. I am now

Re: Best procedure for full backup of live system

2009-10-15 Thread Warren Block
On Thu, 15 Oct 2009, Nerius Landys wrote: Thanks for your help guys. I have decided to attempt the following. With a filesystem snapshot, take a dump 0 of all filesystems. Back up these dumps to a 500GB disk I have sitting at home (the server I'm backing up is in a data center). Perform this

Re: Best procedure for full backup of live system

2009-10-14 Thread LoH
Take a UFS2 snapshot and then backup the snapshot. A similar approach using ZFS snapshots would also work. See the handbook for more details. http://www.freebsd.org/doc/en/books/handbook/backup-strategies.html Nerius Landys wrote: My server is increasingly having important work stored on

Re: Best procedure for full backup of live system

2009-10-14 Thread Warren Block
On Wed, 14 Oct 2009, Nerius Landys wrote: My question is, what is the recommended procedure of taking a full backup on a live system? Ideally, if my hard drive were to crash, I would like to have such a backup so as to make it possible to copy over the entire backup to a new identical

Re: Best procedure for full backup of live system

2009-10-14 Thread Steve Bertrand
Nerius Landys wrote: My server is increasingly having important work stored on it, and I need to start taking backups of a lot of directories, especially /home, /opt, /etc, /usr/local/etc, and maybe others. The ideal backup (and what I've done in the past) is to take a full low-level dd image