Burning ISOs: Difference between revisions

From Alpine Linux
(Create page of links)
 
(Expand, refine)
Line 1: Line 1:
{{Draft}}
See:
See:
* [https://wiki.archlinux.org/index.php/CD_Burning Arch Wiki on CD Burning]
<ul>
* [https://wiki.archlinux.org/index.php/DVD_Burning Arch Wiki on DVD Burning]
<li>[https://wiki.archlinux.org/index.php/CD_Burning Arch Wiki on CD Burning]
* [https://wiki.archlinux.org/index.php/USB_Installation_Media Arch Wiki on Copying Install ISOs to a USB key] -- though note that <code>mkarchiso</code> generates hybrid ISOs, whereas as far as I know, <code>[[How to make a custom ISO image|alpine-iso]]</code> does not
<!-- Gentoo uses Jörg Schilling's "cdrtools"; Arch and Alpine use {{Pkg|cdrkit}} -->
<!-- Gentoo uses mkisofs, available as part of "cdrtools"; Alpine uses {{Pkg|cdrkit}} -->
 
* [http://en.gentoo-wiki.com/wiki/Image_Files Gentoo page on handling ISO files]
<li>[https://wiki.archlinux.org/index.php/DVD_Burning Arch Wiki on DVD Burning]
<!-- Arch uses dvd+rw-tools, rather than less-capable dvdrtools -->
Example: {{Cmd|growisofs -Z /dev/dvd{{=}}/path/to/dvdimage.iso}}
 
<li>[https://wiki.archlinux.org/index.php/USB_Installation_Media Arch Wiki on Copying Install ISOs to a USB key], though note that <code>mkarchiso</code> generates hybrid ISOs, whereas as far as I know, <code>[[How to make a custom ISO image|alpine-iso]]</code> does not
</ul>
 
 
To do the converse operation, copying a CD to an ISO image, just do:
{{Cmd|dd if{{=}}/dev/cdrom of{{=}}/path/to/cdimage.iso}}
 
 
To mount an ISO without physically burning it to a CD:
{{Cmd|modprobe loop
mount -t iso9660 -o ro,loop{{=}}/dev/loop0 /path/to/cdimage.iso /mnt}}
or see [https://wiki.archlinux.org/index.php/Mounting_images_as_user#fuseiso Arch Wiki on fuseiso].
 
 
See also:
* [http://en.gentoo-wiki.com/wiki/Image_Files#Convert_other_image_files_to_ISO Gentoo page on converting image files]
 


[[Category:Storage]]
[[Category:Storage]]

Revision as of 15:35, 28 March 2012

This material is work-in-progress ...

Do not follow instructions here until this notice is removed.
(Last edited by Dubiousjim on 28 Mar 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 mount -t iso9660 -o ro,loop=/dev/loop0 /path/to/cdimage.iso /mnt

or see Arch Wiki on fuseiso.


See also: