Skip to content

Tag Archives: iso

Convert and extract ISO, DAA and BIN image formats in Linux

One way to do it (I think it’s the only way for DAA proprietary file format) is to use Linux version of PowerISO. Get it from their website: wget http://poweriso.com/poweriso.tar.gz And extract it: tar -zxvf poweriso.tar.gz To convert from .daa to .iso format: ./poweriso convert myfile.daa -o myfile.iso -ot iso To extract all contents from [...]

Howto mount ISO image in linux

Log in as root Create the directory for content: mkdir /mnt/iso Mount your ISO image file (called image.iso): mount image.iso /mnt/iso/ -o loop