How to unpack dd file on Windows?

Is it possible to unpack files created with linux dd tool on Windows? I have tried that tool , but it crashes under Windows 7. Any ideas?

2 Answers

dd isn't a compression format, its a image creation application that saves to an uncompressed image format. One does not unpack it You can write it to a drive with dd, or mount it - on linux I'd use kpartx and on windows, something like osfmount or lmdisk.

If you can mount it, you can probably simply image it over to a blank disk, or work on it directly

2

Finally I have found a tool, OSFMount, which allows to mount *.dd files as Windows virtual drives: That is all I needed.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like