Tony Lambiris wrote: > its quite simple... boot into single user mode, foreach partition you have, > mount the src under /src/X and /dst/X (where src is the old disk and dst is > the new disk) and do a: > cd /src/X; tar cf - . | (cd /dst/X; tar xpf - ) > > ive used this before, works great. > after that just make sure you install your boot blocks.
I performed the steps Tony told me and it worked just fine, but... one thing is the / partition had to be mounted read-write (tar complained about not being able to write to /tmp); the other is my new / has double the size of the original / after copying it. I ran the same command line for all my partitions, but / was the only one to grow. Why is that? Thanks