Sunday, October 3, 2010

Making ISO’s in Linux Enviroment

Creating an ISO Image under Linux from the command line is a really easy process. Fire up your favorite terminal and type the following:

# dd if=/dev/cdrom of=nameofisofile

 eg. # dd if=/dev/cdrom of =mycollection.iso

The if is for input file and the of for output file. There are lots of options for dd so check out the man page.
To mount the newly created image (as root) you can mount it as a normal device with the -o loop option:
  
 # mount -o loop /mnt/

No comments:

Post a Comment