How to Create and Use ISO Files on Linux
- Creating an ISO |* Mounting an ISO |* Burning an ISO |* Video |* Tips
|Show more |Show less
X
wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, 13 people, some anonymous, worked to edit and improve it over time.
This article has been viewed 28,581 times.
Learn how to create, mount, or burn ISO images using Linux. Most Linux distributions come with software to create, mount, or burn ISO images. Using these steps, you will learn to do this, and maybe even understand how it works.
Steps
Method 1
Method 1 of 3:
Creating an ISO
-
1
Create the ISO from a CD/DVD using dd. Run the command "dd if=/dev/cdrom of=cdrom.iso"
Method 2
Method 2 of 3:
Mounting an ISO
-
1
Create the mount point. Run the command "mkdir mount_point"
-
2
Mount the ISO. Run the command "sudo mount -o loop cdrom.iso mount_point/"
Method 3
Method 3 of 3:
Burning an ISO
-
1
Burn from the GUI. This is the easiest way to burn an ISO.
2
**Burn from the command line.** Run the command "**sudo cdrecord -v speed=*16* dev=2,0,0 cdrom.iso**"
* In some systems that have only one DVD/CD writer, you can simply Run the command "**sudo cdrecord cdrom.iso**"
[](https://www.wikihow.tech/Create-and-Use-ISO-Files-on-Linux#/Image:Create-and-Use-ISO-Files-on-Linux-Step-5Bullet1.jpg)
* In other cases, You will need to replace dev=2,0,0 to point to your burning device. To see a list of all CD burning devices on your system, Run the command "cdrecord -scanbus", and replace "2,0,0" accordingly.
[](https://www.wikihow.tech/Create-and-Use-ISO-Files-on-Linux#/Image:Create-and-Use-ISO-Files-on-Linux-Step-5Bullet2.jpg)