Loading...


Ratings - How Can I Get From Iso To Usb, Without Writing A Cd?


I've been looking through all the usb distributions. Most of them need you to burn a CD, then copy the files, which I can't do. Is there some way of skipping this, some virtual disc or iso unzip tool?

August 12, 2008, 5:49 pm - Reply -

Which OS are you running? On Linux the mount -o loop option allows you to browse an ISO like a folder.

CODE

mkdir filesgohere
mount -o loop someimage.iso filesgohere

Don't forget to unmount the new "filesgohere" directory when you have finished browsing the ISO.

August 12, 2008, 6:48 pm - Reply -

astaHost