Burning ISOs: Difference between revisions
m (→See also: Rescued a dead link) |
(The article is entitled "Burning ISOs". Restrict the content to just that. Remove most of the other distro stuff and make the article includeable.) |
||
Line 1: | Line 1: | ||
== Burning an image to a CD or DVD == | == Burning an image to a CD or DVD == | ||
Many systems provide the <code>cdrecord</code> command (on Alpine it is provided by the {{pkg|cdrkit|arch=}} package) to write an image to a disc. For example: | |||
{{cmd|cdrecord -v speed{{=}}0 alpine-standard-{{AlpineLatest}}-x86.iso}} | |||
If there's only one CD drive on the system, it should be auto-detected. If not, find the device name using <code>lsblk</code> and specify the <code>dev</code> option. For example: | If there's only one CD drive on the system, it should be auto-detected. If not, find the device name using <code>lsblk</code> and specify the <code>dev</code> option. For example: | ||
{{cmd|cdrecord -v dev{{=}}/dev/sr0 speed{{=}}0 alpine-standard-{{AlpineLatest}}-x86.iso}} | |||
<noinclude> | |||
{{ | |||
== See also == | == See also == | ||
* [https://wiki.archlinux.org/title/Optical_disc_drive#Burning Arch Wiki on CD/DVD Burning] | |||
* [https://web.archive.org/web/20120906220957/http://en.gentoo-wiki.com/wiki/Image_Files#Convert_other_image_files_to_ISO Gentoo page on converting image files] | * [https://web.archive.org/web/20120906220957/http://en.gentoo-wiki.com/wiki/Image_Files#Convert_other_image_files_to_ISO Gentoo page on converting image files] | ||
[[category: ISO]] | [[category: ISO]] | ||
</noinclude> |
Revision as of 08:58, 12 January 2024
Burning an image to a CD or DVD
Many systems provide the cdrecord
command (on Alpine it is provided by the cdrkit package) to write an image to a disc. For example:
cdrecord -v speed=0 alpine-standard-3.20.3-x86.iso
If there's only one CD drive on the system, it should be auto-detected. If not, find the device name using lsblk
and specify the dev
option. For example:
cdrecord -v dev=/dev/sr0 speed=0 alpine-standard-3.20.3-x86.iso