LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Transfer data from one HD to the other?? (https://www.linuxquestions.org/questions/linux-hardware-18/transfer-data-from-one-hd-to-the-other-542416/)

Biggen 04-01-2007 01:27 PM

Transfer data from one HD to the other??
 
Ok, first some background on what I have. Currently I have a 20GB hard drive that was used to install SuSe 10.2 on. SuSe created (at installation time) three partitions that are:

1. /dev/hda1 (swap ~600MB)
2. /dev/hda2 (/ 7.3GB)
3. /dev/hda3 (/home 10.7GB)

Now I have an 80GB hard drive that I would like to have replace the 20GB. Basically I want to copy all the files from my 20GB onto my 80GB, have it set as bootable and get rid of the 20GB completely. The reason for doing this is I am going to begin running Hardware RAID here soon (Level 1) and want to get rid of the smaller drive and then buy another 80GB drive so that I will have to 80's in the system.

So here are the questions:

1. Do I create the exact same three partitions on my 80GB drive but (obviously) have them created to use the extra space on the 80GB? How big should I make the /home, /, and swap partitions on the 80GB drive??

2. Is it really as easy as copying everything from the 20GB drive over to the 80GB once the three partitions are created? If this is so, do I simply mark the 80GB as bootable after this is done?? Would this work? What copy command would I use to make sure that EVERY file and copied to the 80GB and that all directories and recursive's are intact?

And, finally, does any of this make sense or is there an easier way to transfer files to a new drive than what I am suggesting?

Thanks!!

Rodman

Quakeboy02 04-01-2007 02:05 PM

Here's a thread that's relevant to your question. It's about Debian, so you'll have to take that into consideration. But, the general issue of copying from one disk to another is basically the same. I've learned that it's best to do this copy, while booted from a liveCD.

http://www.linuxquestions.org/questi...15#post2663415

Biggen 04-01-2007 02:14 PM

Quote:

Originally Posted by Quakeboy02
Here's a thread that's relevant to your question. It's about Debian, so you'll have to take that into consideration. But, the general issue of copying from one disk to another is basically the same. I've learned that it's best to do this copy, while booted from a liveCD.

http://www.linuxquestions.org/questi...15#post2663415

Just read over it. I wonder if it would be easier to just use Ghost Linux to create a clone. And then tell GRUB to boot from the new Hard drive?

Quakeboy02 04-01-2007 02:23 PM

If your "from" partition is the same size as your "to" partition, then you can even use "dd". AwsomeMachine has an excellent thread on the use of "dd" here:

http://www.linuxquestions.org/questi...d.php?t=362506

Biggen 04-01-2007 02:37 PM

Quote:

Originally Posted by Quakeboy02
If your "from" partition is the same size as your "to" partition, then you can even use "dd". AwsomeMachine has an excellent thread on the use of "dd" here:

http://www.linuxquestions.org/questi...d.php?t=362506

Well the source is smaller than the target. It appears that dd will still work. If that is the case I just have to figure out how to resize the paritions after dd moves them over to the bigger drive...

Quakeboy02 04-01-2007 02:45 PM

Quote:

Well the source is smaller than the target. It appears that dd will still work. If that is the case I just have to figure out how to resize the paritions after dd moves them over to the bigger drive...
If it's ext2/ext3, then you can try the resize2fs command.

Biggen 04-01-2007 03:15 PM

Quote:

Originally Posted by Quakeboy02
If it's ext2/ext3, then you can try the resize2fs command.

Ok, I think this is what I am going to do. I am going to use Ghost or G4U (haven't decided), then am going to try and resize the partitions with resize2fs. Currently, my 80GB hard drive (the target) does not have any partitions defined. Do I need define the three partitions on the 80GB drive or just leave it empty and let Ghost or G4U do the work?

Quakeboy02 04-01-2007 03:33 PM

I've never used them. It would be very helpful, though, if you would report what you did after you get it doing. There is always the next guy who's gonna have the same question.

jiml8 04-01-2007 03:44 PM

dd if=/dev/hda of=/dev/hdb

will copy the entire contents of the older and smaller drive to the new drive, with the exact same structure. The result will be that the new drive is bootable and has the same partition structure as the old drive.

As a consequence of this, you will have a lot of empty space on the back end of the new drive, which you then can partition.

Resize2fs won't help you because this will resize the filesystem, not the partition, and it won't enlarge a filesystem to be larger than the partition.

You won't be able to enlarge hda1 or hda2 because the end of these partitions leads immediately to the start of the subsequent partition, hence there is no space available to enlarge into. You would be able to enlarge hda3 since nothing is at the end of it.

If you wish to enlarge the partitions, your best choice is to just partition the new drive with the partition sizes that you want to have, then use the cp command recursively (or use a window manager's click and drag facility, which turns out to be much faster) to copy all the contents of the old partition to the new partition. You can even do this with the active system partition so long as you block any cron jobs from running and just sit and watch while the copy occurs.

When you have finished all of this copying, copy the bootblock from the old HD to the new HD using dd, exactly like this:

dd if=/dev/hda of=/dev/hdb bs=446 count=1

Pay particular attention to the bs=446; you want to copy exactly the first 446 bytes of the HD, not one less and not one more.

Once you have done this, your new drive will be completely bootable, and will contain the exact information of the old HD except on your new resized partitions.

jiml8 04-01-2007 03:53 PM

Oh, and as an aside...

I generally place swap someplace in the middle of the drive, not at the end. Reason is to minimize average head travel to reach it. Thus, with your organization, I would put it between / and /home.

Biggen 04-01-2007 04:09 PM

Quote:

Originally Posted by jiml8
Oh, and as an aside...

I generally place swap someplace in the middle of the drive, not at the end. Reason is to minimize average head travel to reach it. Thus, with your organization, I would put it between / and /home.

Wow, Jim, great info!! What is the exact "cp" to use? Something like "cp -arx /dev/hda1 /dev/hdb1"? Then the exact same thing for "/dev/hda2 /dev/hdb2", and "dev/hda3/hdb3"? Or can I use a generic command like "cp -arx /dev/hda /dev/hdb"?

So basically I need go ahead and create three partitions on my new drive with the partition sizes I want (I need mount points correct? Same as those on the old 20GB drive?). I read somewhere that swap should be approx double your ram or so. I have around 300MB of RAM so the swap should be around 600MB? What about the sizes for "/" and "/home"? Any suggestions?

After I create those partitions, I format them, and then I can use a live-cd distro to boot with. I can then cp from hda to hdd. Then, when the copying is finished, I issue
dd if=/dev/hda of=/dev/hdb bs=446 count=1 which will copy the MBR (I'm assuming) to the new drive. Then instead of playing around with GRUB, I can just move the 80GB hard drive to the same connector the 20GB was on so that the system can still boot to /dev/hda without me having to change it to /dev/hdd which is what it is now (Slave on the Secondary IDE channel).

Quakeboy02 04-01-2007 04:16 PM

Do you actually run processes that use the swap space? If not, it doesn't matter where you put it. If you do, then you might consider spending a few bucks and getting more RAM.

jiml8 04-01-2007 05:14 PM

Quote:

Originally Posted by Biggen
Wow, Jim, great info!! What is the exact "cp" to use? Something like "cp -arx /dev/hda1 /dev/hdb1"? Then the exact same thing for "/dev/hda2 /dev/hdb2", and "dev/hda3/hdb3"?

Not exactly. You have to have the partitions mounted and refer to them via their mountpoints. I would choose options that clone the files, keeping datestamps and permissions. Don't know offhand which options those are; I'd have to look it up, but you can do that too.

It actually would go quicker to use KDE click and drag for the copies, including the copy of /, because as it turns out KDE does it much faster than cp does.

Quote:

Or can I use a generic command like "cp -arx /dev/hda /dev/hdb"?
no

Quote:

So basically I need go ahead and create three partitions on my new drive with the partition sizes I want (I need mount points correct? Same as those on the old 20GB drive?).
Yes, and yes.

Quote:

I read somewhere that swap should be approx double your ram or so. I have around 300MB of RAM so the swap should be around 600MB?
Just make sure you have enough to keep you out of trouble regardless of what you are doing.

Quote:

What about the sizes for "/" and "/home"? Any suggestions?
As much as you want, and more than you think you need.

Quote:

After I create those partitions, I format them, and then I can use a live-cd distro to boot with. I can then cp from hda to hdd. Then, when the copying is finished, I issue
dd if=/dev/hda of=/dev/hdb bs=446 count=1 which will copy the MBR (I'm assuming) to the new drive. Then instead of playing around with GRUB, I can just move the 80GB hard drive to the same connector the 20GB was on so that the system can still boot to /dev/hda without me having to change it to /dev/hdd which is what it is now (Slave on the Secondary IDE channel).
Skip the live CD distro; you can do it from your running installation on hda2. When you then shut down the machine and move the HDs around, don't forget to change the jumper on the 80 Gig drive.

jiml8 04-01-2007 05:17 PM

Quote:

Originally Posted by Quakeboy02
Do you actually run processes that use the swap space? If not, it doesn't matter where you put it. If you do, then you might consider spending a few bucks and getting more RAM.

I have 1 Gig RAM and 1 Gig swap. I run a linux workstation with a lot of servers running since I use those in my development work. I also run VMWare Workstation with at least one copy and often two or three copies of Windows 2000 up and running.

I can fill any system, and I use a lot of swap. Occasionally, I will close out some apps and disable swap to force everything back into main memory, then reenable swap.

Biggen 04-01-2007 06:19 PM

Ok, I fired up Yast2 and went to the partitioner. But there is a problem. I can't have the exact same mount points on a system. When I try to create "/" and "/home" on the second hard drive, Yast tells me "The Mount point is already in use, select another one". This makes since since the linux system uses a filesystem tree rather than drive letters. So I can't create two "/" or two anything elses... Right??

This is becoming more cumbersome than I had hoped. Am I doing something wrong?

I appreciate your help on this, btw. Networking is my thing, not linux file systems... :-(


All times are GMT -5. The time now is 04:49 AM.