Make an exact duplicate of a NTFS filesystem partition under Linux

by Vivek Gite on December 15, 2006 · 1 comment

Q. How do I make an exact duplicate of a partition using Linux? I have brought a new hard disk and I would like make an exact duplicate of a NTFS filesystem located at /dev/hda1 to /dev/hdb1.

A. You can copy a file, converting and formatting using a dd command. Use same tool to make an exact copy of NTFS filesystem partition under Linux.

First make sure you have created /dev/hdb1 using Linux fdisk program. /dev/hdb1 partitions must be the exact same size of /dev/hda1 so that you create a direct raw copy of source.

Use fdisk -l command to view current /dev/hda1 partition size (cylinders).
# fdisk -l

Now use dd command as follows:
# dd if=/dev/hda1 of=/dev/hdb1

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 1 comment… read it below or add one }

1 Chris February 7, 2007

Remember that the first sector in an NTFS partition has a copy of the “special hidden sectors” – so if you’re thinking os “starting” your copied partition on a different cylinder to the original, you’ll need to modify this too.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 7 + 15 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: