Results 1 to 5 of 5
I just created a NTFS image file using the following steps:
dd if=/dev/zero of=/tmp/disk-image count=20480
losetup /dev/loop0 /tmp/disk-image
mkntfs /dev/loop0
mkdir /tmp/virtual-fs
mount -t ntfs /dev/loop0 /tmp/virtual-fs
After this i ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-26-2010 #1Just Joined!
- Join Date
- Sep 2010
- Posts
- 6
How to read NTFS image file in Windows
I just created a NTFS image file using the following steps:
dd if=/dev/zero of=/tmp/disk-image count=20480
losetup /dev/loop0 /tmp/disk-image
mkntfs /dev/loop0
mkdir /tmp/virtual-fs
mount -t ntfs /dev/loop0 /tmp/virtual-fs
After this i want to access the contents of this image file in windows. How to do that ?
Thanks for the help in advance.
- 09-26-2010 #2
you could probably mount it with something like virtual clonedrive
- 09-26-2010 #3Just Joined!
- Join Date
- Sep 2010
- Posts
- 6
- 09-26-2010 #4Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 10,143
If you are running Linux, you can mount it with the -o loop option to the mount command. Also, assuming it is in the form of an ISO image, then you can mount it as a drive in a VirtualBox Windows VM if you run Windows in a VM. Running natively? I'm not sure what is available to do that.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 09-26-2010 #5
if it is .img file, you should be able to open it with virtual clonedrive, it is a windows software, here is the link
SlySoft Virtual CloneDrive


Reply With Quote

