
I'm using HxCFloppyEmulator to convert from .img to RAW. The direct download is here.
HxCFloppyEmulator should have a native Linux executable, but so far I haven't found one and the wine-version works just fine.
To convert one file
Code: Select all
wine ~./kryoflux/hxcfe.exe -finput:cooldsk.img -foutput:cooldsk.img -conv:KRYOFLUXSTREAM
Code: Select all
for files in `find . -name \*.img`; do wine ~/kryoflux/hxcfe.exe -finput:$files -foutput:$files -conv:KRYOFLUXSTREAM; done
Hope this helps anyone who's looking
