News:

How did you even find this place?

Main Menu

Disc Imaging

Started by Hdx, April 20, 2006, 09:30:26 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Hdx

Ok, I need a program that will copy a exact disc from one to another.
In linux.
Simmilar to Nortan Ghost, but for linux.
When I say disc I mean HD not CD.
I need to copy the contents of my 160GB to my 250GB and then zero my 160GB cuz i'm adding another 300GB HDD.
the 160GB is my boot disc, so ya, it needs to copy everything exactly.
Any suggestions???
~-~(HDX)~-~
http://img140.exs.cx/img140/6720/hdxnew6lb.gif
09/08/05 - Clan SBs @ USEast
[19:59:04.000] <DeadHelp> We don't like customers.
[19:59:05.922] <DeadHelp> They're assholes
[19:59:08.094] <DeadHelp> And they're never right.

Joe

gnomebaker

sudo apt-get install gnomebaker
Quote from: Camel on June 09, 2009, 04:12:23 PMI'd personally do as Joe suggests

Quote from: AntiVirus on October 19, 2010, 02:36:52 PM
You might be right about that, Joe.


Hdx

I said for Hard Drives, not CDs/DVDs!
Unless that does Hard Drives to.
If so tell me how plz.
~-~(HDX)~-~
http://img140.exs.cx/img140/6720/hdxnew6lb.gif
09/08/05 - Clan SBs @ USEast
[19:59:04.000] <DeadHelp> We don't like customers.
[19:59:05.922] <DeadHelp> They're assholes
[19:59:08.094] <DeadHelp> And they're never right.

Joe

Quote from: Camel on June 09, 2009, 04:12:23 PMI'd personally do as Joe suggests

Quote from: AntiVirus on October 19, 2010, 02:36:52 PM
You might be right about that, Joe.


Ergot

try dd ?
dd if=/dev/hda1 of=/dev/hdb1

When I upgraded my harddrive, I just made a partition for Linux and cp -or (I think that right) everything.
Quote from: Newby on February 26, 2006, 12:16:58 AM
Who gives a damn? I fuck sheep all the time.
Quote from: rabbit on December 11, 2005, 01:05:35 PM
And yes, male both ends.  There are a couple lesbians that need a two-ended dildo...My router just refuses to wear a strap-on.
(05:55:03) JoE ThE oDD: omfg good job i got a boner thinkin bout them chinese bitches
(17:54:15) Sidoh: I love cosmetology

MyndFyre

Quote from: Ergot on April 21, 2006, 02:37:16 AM
try dd ?
dd if=/dev/hda1 of=/dev/hdb1

When I upgraded my harddrive, I just made a partition for Linux and cp -or (I think that right) everything.

I successfully transferred a 4-partition 120gb hard drive onto a 400gb hard drive with this.

[edit] include switches:
bs=1M --progress
[/edit]
Quote from: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

Quik

Quote from: Ergot on April 21, 2006, 02:37:16 AM
try dd ?
dd if=/dev/hda1 of=/dev/hdb1

When I upgraded my harddrive, I just made a partition for Linux and cp -or (I think that right) everything.

I would be very weary of using this command. Do some research.
Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

MyndFyre

Quote from: Quik on April 21, 2006, 03:22:47 AM
Quote from: Ergot on April 21, 2006, 02:37:16 AM
try dd ?
dd if=/dev/hda1 of=/dev/hdb1

When I upgraded my harddrive, I just made a partition for Linux and cp -or (I think that right) everything.

I would be very weary of using this command. Do some research.

I don't see anything that would be cause for waryness.  What do you mean?

I've used dd in Linux and Windows both, never had a problem.
Quote from: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

Ergot

What would be the proper command? Can you do whole harddrives at a time or do you need to do the separate partitions individually?
Quote from: Newby on February 26, 2006, 12:16:58 AM
Who gives a damn? I fuck sheep all the time.
Quote from: rabbit on December 11, 2005, 01:05:35 PM
And yes, male both ends.  There are a couple lesbians that need a two-ended dildo...My router just refuses to wear a strap-on.
(05:55:03) JoE ThE oDD: omfg good job i got a boner thinkin bout them chinese bitches
(17:54:15) Sidoh: I love cosmetology

Sidoh

Maybe he's talking about this?
QuoteSome people believe dd means ``Destroy Disk'' or ``Delete Data'' because if it is misused, a partition or output file can be trashed very quickly. Since dd is the tool used to write disk headers, boot records, and similar system data areas, misuse of dd has probably trashed many hard disks and file systems.

MyndFyre

Quote from: Ergot on April 21, 2006, 03:31:55 AM
What would be the proper command? Can you do whole harddrives at a time or do you need to do the separate partitions individually?

In Linux, it would be:

dd bs=1M if=/dev/hda of=/dev/hdb --progress
That copies hard disk A to hard disk B including partition data.

Windows was something like:
dd bs=1M if=\\?\Device\Harddisk0\Partition0 of=\\?\Device\Harddisk1\Partition0 --progress

The Windows \\?\Device namespace (the \\Global?\ namespace in Win2000)'s Partition0 of Harddisk objects is the actual device transparent of the filesystem.

Quote from: Sidoh on April 21, 2006, 03:33:45 AM
Maybe he's talking about this?
QuoteSome people believe dd means ``Destroy Disk'' or ``Delete Data'' because if it is misused, a partition or output file can be trashed very quickly. Since dd is the tool used to write disk headers, boot records, and similar system data areas, misuse of dd has probably trashed many hard disks and file systems.

Oh, I see.  Morons used it and it broke, therefore it's an evil destructive command.  Much like the "restore" command of DOS.  Morons should be required to have a license to breathe.  I would revoke it if I was king.
Quote from: Joe on January 23, 2011, 11:47:54 PM
I have a programming folder, and I have nothing of value there

Running with Code has a new home!

Quote from: Rule on May 26, 2009, 02:02:12 PMOur species really annoys me.

Ergot

Why BS=1M and I'm guessing --progress means verbosely ?
Quote from: Newby on February 26, 2006, 12:16:58 AM
Who gives a damn? I fuck sheep all the time.
Quote from: rabbit on December 11, 2005, 01:05:35 PM
And yes, male both ends.  There are a couple lesbians that need a two-ended dildo...My router just refuses to wear a strap-on.
(05:55:03) JoE ThE oDD: omfg good job i got a boner thinkin bout them chinese bitches
(17:54:15) Sidoh: I love cosmetology

Hdx

sudo cat /dev/hda > /dev/hdb
Worked, 0.o
Fun, Thanks, anyone anyone know a GUI for formatting/partitionsing a disc? I know fdisk, but any utilities with a GUI?
~-~(HDX)~-~
http://img140.exs.cx/img140/6720/hdxnew6lb.gif
09/08/05 - Clan SBs @ USEast
[19:59:04.000] <DeadHelp> We don't like customers.
[19:59:05.922] <DeadHelp> They're assholes
[19:59:08.094] <DeadHelp> And they're never right.

Ergot

Quote from: HdxBmx27 on April 23, 2006, 01:59:44 AM
sudo cat /dev/hda > /dev/hdb
Worked, 0.o
Fun, Thanks, anyone anyone know a GUI for formatting/partitionsing a disc? I know fdisk, but any utilities with a GUI?
~-~(HDX)~-~
I guess... weird way to do it though :\.
Quote from: Newby on February 26, 2006, 12:16:58 AM
Who gives a damn? I fuck sheep all the time.
Quote from: rabbit on December 11, 2005, 01:05:35 PM
And yes, male both ends.  There are a couple lesbians that need a two-ended dildo...My router just refuses to wear a strap-on.
(05:55:03) JoE ThE oDD: omfg good job i got a boner thinkin bout them chinese bitches
(17:54:15) Sidoh: I love cosmetology

deadly7

Quote from: HdxBmx27 on April 23, 2006, 01:59:44 AM
sudo cat /dev/hda > /dev/hdb
Worked, 0.o
Fun, Thanks, anyone anyone know a GUI for formatting/partitionsing a disc? I know fdisk, but any utilities with a GUI?
~-~(HDX)~-~
cfdisk
[17:42:21.609] <Ergot> Kutsuju you're girlfrieds pussy must be a 403 error for you
[17:42:25.585] <Ergot> FORBIDDEN

on IRC playing T&T++
<iago> He is unarmed
<Hitmen> he has no arms?!

on AIM with a drunk mythix:
(00:50:05) Mythix: Deadly
(00:50:11) Mythix: I'm going to fuck that red dot out of your head.
(00:50:15) Mythix: with my nine