Backup FreeBSD - On CD-R's or DVD's ?

Hello All,

I'm looking into backing up a FreeBSD drive onto some CD's or DVD's So I can Load it up on a separate hard drive.

I've used Acronis and DataLifeGaurd Tools from Western Digital on windows systems, but apparently they do not work for FreeBSD.

Does Anyone have a good suggestion on doing this ?�e
 
Seems the disk to disk one would be pretty easy ? Since thats pretty much what Im trying to do.

So do I just put in the 2nd hard drive, boot the system as normal and run the commands below ?

Update 1
Moving system

You can move system from disk to disk on fly with


Code:
$ newfs -U /dev/ad2s1a
$ mount /dev/ad2s1a.... /target
$ cd /target
$ dump -0Lauf - /dev/ad1s1a  | restore -rf -

you can do the same using sudo

Code:
$ sudo echo
$ sudo dump -0Lauf - /dev/ad1s1a  | sudo restore -rf -
 
do you think I'll run into any problems once I remove the 1st hard drive ? do I need to copy a MBR or anything like that ?
 
Back
Top