Burning ISOs: Difference between revisions
Dubiousjim (talk | contribs) m (markup) |
Dubiousjim (talk | contribs) ("may happen automatically") |
||
Line 27: | Line 27: | ||
# when finished | # when finished | ||
umount /mnt | umount /mnt | ||
losetup -d $LOOP}} | losetup -d $LOOP # this step may happen automatically when you umount}} | ||
or see [https://wiki.archlinux.org/index.php/Mounting_images_as_user#fuseiso Arch Wiki on fuseiso]. | or see [https://wiki.archlinux.org/index.php/Mounting_images_as_user#fuseiso Arch Wiki on fuseiso]. | ||
Revision as of 01:09, 5 November 2012
This material is work-in-progress ... Do not follow instructions here until this notice is removed. |
See:
- Arch Wiki on CD Burning
- Arch Wiki on DVD Burning
Example:
growisofs -Z /dev/dvd=/path/to/dvdimage.iso
- Arch Wiki on Copying Install ISOs to a USB key, though note that
mkarchiso
generates hybrid ISOs, whereas as far as I know,alpine-iso
does not
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: