Results 1 to 5 of 5
hi
I'm looking for a tool to extract .img file
this is a backup image from dreambox, not a boot image and was created with FLASHWIZARD PRO
Code:
# file ...
- 06-01-2008 #1Linux Newbie
- Join Date
- Jun 2004
- Posts
- 120
extract .img file
hi
I'm looking for a tool to extract .img file
this is a backup image from dreambox, not a boot image and was created with FLASHWIZARD PRO
greetingsCode:# file dreambox.img dreambox.img: Linux Compressed ROM File System data, big endian size 65536 CRC 0x0, edition 0, 0 blocks, 0 files
cc
- 06-01-2008 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,088
I think you should be able to extract some .img files using dd.
oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 06-01-2008 #3Linux Newbie
- Join Date
- Jun 2004
- Posts
- 120
- 06-02-2008 #4forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,088
I don't really know if it will work, as I've never tried it.
The flashwizard pro people might use some kind of proprietary format, too.
You can use the dd command to extract image files to a device, such as:
...if you wanted to extract the image to a USB flash drive, for instance.Code:dd if=file_name.img of=/dev/sda1
I'm not sure what would happen if you tried to extract it to a folder in your /home directory, so be careful if you should try it. You can check the dd man page for dd for more information about using the command.
Maybe someone that has more experience extracting img files will reply with more info.oz
→ new members/users: read this first | new member faq
→ no private messages requesting computer support - post them on the forums!
→ please use the "report post" button to alert our forum admins to problematic posts rather than responding to them yourself.
- 06-03-2008 #5Linux Guru
- Join Date
- Nov 2007
- Location
- Córdoba (Spain)
- Posts
- 1,513
Fuseiso can mount many image formats: iso, nrg, mdf, img, bin...
I also know of programs like nrg2iso, mdf2iso, ccd2iso, even b5i2iso. Unfortunately, I don't recall using img2iso, though it might exist. Most of these formats are <something else>+an iso block after that header. So, it *might* be possible to use dd to extract the iso from these image formats (maybe that's what these simple converters do as well) but it's not that simple as dd'ing the whole img. At least, you will need to know the starting position of the really useful data.


Reply With Quote

