Burning ISOs: Difference between revisions
Dubiousjim (talk | contribs) (Create page of links) |
Dubiousjim (talk | contribs) (Expand, refine) |
||
Line 1: | Line 1: | ||
{{Draft}} | |||
See: | See: | ||
<ul> | |||
<li>[https://wiki.archlinux.org/index.php/CD_Burning Arch Wiki on CD Burning] | |||
<!-- Gentoo uses Jörg Schilling's "cdrtools"; Arch and Alpine use {{Pkg|cdrkit}} --> | |||
< | |||
* [http://en.gentoo-wiki.com/wiki/Image_Files Gentoo page on | <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. |
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 mount -t iso9660 -o ro,loop=/dev/loop0 /path/to/cdimage.iso /mnt
or see Arch Wiki on fuseiso.
See also: