Burning ISOs

From Alpine Linux
Revision as of 01:09, 5 November 2012 by Dubiousjim (talk | contribs) ("may happen automatically")
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
This material is work-in-progress ...

Do not follow instructions here until this notice is removed.
(Last edited by Dubiousjim on 5 Nov 2012.)

See:


To do the converse operation, copying a CD to an ISO image, just do:

dd if=/dev/cdrom of=/path/to/cdimage.iso


To mount an ISO without physically burning it to a CD:

modprobe loop LOOP=`losetup -f` losetup $LOOP /path/to/cdimage.iso mount -t iso9660 -o ro $LOOP /mnt ... # when finished umount /mnt losetup -d $LOOP # this step may happen automatically when you umount

or see Arch Wiki on fuseiso.


See also: