On Sun, 18 Oct 2009 13:48:20 -0400, Othersongs <post.DeleteThis@onng.net> wrote:
> My main question here is a) does anyone know if there is
> bootable Unix disc (similar to Acronis or Norton Ghost)
> that will do what I want???
I've never used Acronis or Norton Ghost.
I haven't looked at many of the live linux boot cds, but I'd expect
them all to have the required basic tools to do this.
You have three basic options ...
1) Sector by sector copy of the first hard drive onto the first
250GB followed by resizing the partition/filesystem.
This can create a possible problem with duplicate volume serial
numbers in the mbr, if you plan on using both drives in the same
computer, after the copying. This problem can actually be
a benefit if you have vista installed, as the mbr will be
unchanged.
2) Preallocate a 250GB partition on the new drive, then do a
sector by sector copy of the partition, followed by resizing
the partition/filesystem.
3) Allocate the 500GB partition, format it, and copy the data
from the first drive to the second.
What do you currently have on the hard drive, as in which os, and
which filesystem type (fat or ntfs)?
http://www.justlinux.com/forum/showthread.php?threadid=134457
shows how to do option number 2.
Option 1 is similar to option 2, except that you skip the creating
of the partition, and replace the dd command with
dd if=/dev/hda of=/dev/sda bs=32256
to copy the entire drive, including the first track.
Option 3 can be done with the tar command as suggested by
Arno, or a little simpler using rsync ...
After creating the partition on the new drive, as per the above
article, mount the old and new filesystems ...
mkdir /mnt/old
mount /dev/hda1 -t ntfs /mnt/old
mkdir /mnt/new
mount /dev/hdb1 -t ntfs /mnt/new
rsync -av /mnt/old/ /mnt/new/
Regards, Dave Hodgins
--
Change nomail.afraid.org to ody.ca to reply by email.
(nomail.afraid.org has been set up specifically for
use in usenet. Feel free to use it yourself.)