The UNIX and Linux Forums
>
Special Forums
>
Filesystems, Disks and Memory
How to duplicate a drive in Unix?
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Directory
Register
Forum Rules
FAQ
Contribute
Members List
Search
Today's Posts
Mark Forums Read
Thread
:
How to duplicate a drive in Unix?
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
02-07-2002
DanielB
Registered User
Join Date: Jan 2002
Posts: 10
You can use dd for that. Lets say you want to create an image file of hda you would use : dd if=/dev/hda of=/tmp/hdaimage.
If you got 2 identical disks you could mirror them like this :
dd if=/dev/hda of=/dev/hdb
DanielB
View Public Profile
Find all posts by DanielB