How do I mount an NTFS image created by GNU NTFSclone on Windows?

4

How do I mount an NTFS image created by GNU NTFSclone on Windows? Neither the gnuwin32 version of NTFSclone nor Cygwin’s mount seem to be capable.

user64996

Posted 2011-02-11T23:46:04.617

Reputation: 7 397

1Nitpick: ntfsclone is not a GNU project. – psusi – 2016-04-02T02:15:16.050

Link is broken. – jpmc26 – 2019-02-19T03:53:55.217

Answers

7

If you just need to read an image, 7-zip should do it, believe it or not. The file manager UI should let you view the contents or extract, the 7z.exe command-line tool should let you extract it too.

Proof since this got downvoted despite being right, in a changelog.

If you actually need to write, or make the system think it's a real disk, I think OSFMount may be the only option. It is free (as in free beer, if you want that distinction made).

Wyatt8740

Posted 2011-02-11T23:46:04.617

Reputation: 943

7zip is for manipulating archives, like zip, 7zip, and tar... it does not understand ntfs filesystem images. – psusi – 2016-04-02T02:16:26.800

@psusi I believe it does... I know it can read fat32 filesystems and ext4 filesystems and HFS+ filesystems/DMG files. Try it. (edit: yes it can.)

– Wyatt8740 – 2016-04-10T01:46:28.750

Oh wow, that is crazy. – psusi – 2016-04-10T13:48:50.097

@psusi it can also extract files from some .MSI installers and .exe programs/setup programs, and icons and resources from DLL files. I used to play around with it a lot just to see what all it could open. It's a real swiss-army knife. – Wyatt8740 – 2016-04-11T05:21:12.480

MSI and self extracting executables make sense since they are just slightly different forms of zip files. A filesystem image though, is an entirely different beast that is far more complicated. – psusi – 2016-04-11T22:58:00.080

1

I'm using PassMark OSFMount, as it's a simple no-nonsense utility perfect for temporary mounts. It doesn't register itself with the system start up or install an icon to the system tray.

I am not sure if your NTFS images will be compatible, but you might want to try:
http://www.osforensics.com/tools/mount-disk-images.html

If you want a write access, be sure to uncheck the read-only flag during mounting.

gyohng

Posted 2011-02-11T23:46:04.617

Reputation: 11

0

ImDisk might mount it, but you may have to fuss with the settings to get it to work.

afrazier

Posted 2011-02-11T23:46:04.617

Reputation: 21 316

Why would it handle ntfsclone images? – user64996 – 2011-02-13T18:16:09.473

Because it can mount raw hard disk images, such as those created by dd. The image created by ntfsclone should be similar, unless you've used the "control code" feature for specifying free space. – afrazier – 2011-02-14T14:08:52.683

1Isn't it meaningless to use ntfsclone without --save-image option, which skips free space? – Basilevs – 2013-10-28T04:04:35.753

0

ImDisk will mount the partition image file unless you created it using the "special" format ('-s' option) of ntfsclone.

If the partition was cloned using the special format, you need to clone it again using ntfsclone.

example: ntfsclone -ro newfile.img oldfile.img

Selespridar

Posted 2011-02-11T23:46:04.617

Reputation: 11

-1 How is this fundamentally different from the answer posted by afrazier?

– user66001 – 2016-06-14T19:12:38.963

@user66001: Probably because it's more detailed? – SamB – 2018-10-27T18:25:00.023

@Samb - Then comment on the previous one, to not force people to look at several answers with similar info. – user66001 – 2018-10-28T00:57:36.587