Re: Clone root partition

2007-01-05 Thread ][
On Sat, 30 Dec 2006 14:00:38 -0500, Marty wrote: For cloning root filesystem drives I use a small script that performs an rsync backup followed up by fixups to the /dev directory, /etc/fstab, and /etc/lilo.conf and then runs lilo -r to make the backup bootable. (A similar approach could

Re: Clone root partition

2007-01-04 Thread T
On Sat, 30 Dec 2006 14:00:38 -0500, Marty wrote: For cloning root filesystem drives I use a small script that performs an rsync backup followed up by fixups to the /dev directory, /etc/fstab, and /etc/lilo.conf and then runs lilo -r to make the backup bootable. (A similar approach could

Re: Clone root partition

2007-01-01 Thread Chris Lale
T wrote: Hi, I'm trying to compile a comprehensive document on cloning root partitions. My immediate goal is to clone my current working Linux to external USB HD, so that I can use it wherever I go. By comprehensive I mean it should not be as simple minded as dd if=/dev/hda2 of=/dev/sda2

Re: Clone root partition

2006-12-31 Thread Hugo Vanwoerkom
Digby Tarvin wrote: I did this only yesterday - but in my case I wanted a mirror image of the entire system, not just the root partition. The simplest most bullet proof procedure I could come up with was: 1. dd if=/dev/hda of=/dev/sda 2. vi /etc/fstab in the copy and 1,$s/hda/sda/ 3.

Re: Clone root partition

2006-12-31 Thread Alejandro
Digby Tarvin wrote: I did this only yesterday - but in my case I wanted a mirror image of the entire system, not just the root partition. The simplest most bullet proof procedure I could come up with was: 1. dd if=/dev/hda of=/dev/sda 2. vi /etc/fstab in the copy and 1,$s/hda/sda/ 3.

Re: Clone root partition

2006-12-31 Thread T
On Sun, 31 Dec 2006 12:08:14 -0300, Alejandro wrote: Suppose I have a production server with a /dev/sda disk and I mount a second disk /dev/sdb in order to clon sda to sdb (booting from a live cd). Sdb is the disk from a backup server (similar to the production server) I want to use when

Clone root partition

2006-12-30 Thread T
Hi, I'm trying to compile a comprehensive document on cloning root partitions. My immediate goal is to clone my current working Linux to external USB HD, so that I can use it wherever I go. By comprehensive I mean it should not be as simple minded as dd if=/dev/hda2 of=/dev/sda2 or cp

Re: Clone root partition

2006-12-30 Thread Digby Tarvin
I did this only yesterday - but in my case I wanted a mirror image of the entire system, not just the root partition. The simplest most bullet proof procedure I could come up with was: 1. dd if=/dev/hda of=/dev/sda 2. vi /etc/fstab in the copy and 1,$s/hda/sda/ 3. either

Re: Clone root partition

2006-12-30 Thread Marty
T wrote: Hi, I'm trying to compile a comprehensive document on cloning root partitions. My immediate goal is to clone my current working Linux to external USB HD, so that I can use it wherever I go. By comprehensive I mean it should not be as simple minded as dd if=/dev/hda2 of=/dev/sda2

Re: Clone root partition

2006-12-30 Thread Roberto C. Sanchez
On Sat, Dec 30, 2006 at 05:45:34PM +, T wrote: Hi, I'm trying to compile a comprehensive document on cloning root partitions. My immediate goal is to clone my current working Linux to external USB HD, so that I can use it wherever I go. You want something like systemimager. Regards,