Burning ISOs

From Alpine Linux
Revision as of 21:13, 2 June 2024 by WhyNotHugo (talk | contribs) (Add category installation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

See also