How to Burn ISO in Linux

By Chris Hoffman

ISO images are disc image files that contain all the information required for duplicating a disc. ISO images are often used for burning operating system installation images. You can burn ISO images to CDs or DVDs in Linux using the software included with the GNOME or KDE packages, or by using the command line.

GNOME

Insert a blank or rewritable CD or DVD into your disc drive, then close it. Click "Cancel" on any prompt windows that appear.

Right-click the ISO file, then click "Burn to Disc."

Click "Select a Disc" in the "Image Burning Setup" window and click your disc drive in the list.

Burn the ISO to disc by clicking "Burn" in the "Image Burning Setup" window.

KDE

Insert a blank or rewritable CD or DVD into your disc drive, then close it.

Open the CD/DVD creation application by clicking the "K" menu at the bottom left of your screen, then clicking "Applications," "Multimedia" and "CD & DVD Burning."

Open the "Burn Image" window by clicking "Tools" at the top of the burning application window, then clicking "Burn Image."

Select an ISO by clicking the folder next to the "Image to Burn" box, browsing to an ISO file, then double-clicking it.

Burn the ISO file to disc by clicking "Start" in the "Burn Image" window.

Command Line

Insert a blank or rewritable CD or DVD into your disc drive, then close it.

View the device path of your disc drive by typing "wodim --devices" into the command prompt, then pressing "Enter."

Burn the ISO file to disc by typing "wodim dev=/dev/cdrw -v -data cd_image.iso," replacing "/dev/cdrw" with the path to your disc drive shown by the "wodim --devices" command and "cd_image.iso" with the path to the ISO file. Then press "Enter." For example, burn an ISO file located on your desktop by typing "wodem dev=/dev/cdrw -v -data /home/username/Desktop/cd_image.iso."

×