How to Create and Use ISO Files on Linux

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.

Creating an ISO

Create the ISO from a CD/DVD using dd.

Run the command “”

  • You can replace cdrom.iso with a filename you choose for the iso, or replace /mnt/cdrom with the location of the cd device on your system. Some Linux systems show it as /mnt/sr0.WH.shared.addScrollLoadItem(‘b53e1917a08430a864be3ee5d484c7f3’)WH.performance.clearMarks(‘image1_rendered’); WH.performance.mark(‘image1_rendered’);

Mounting an ISO

Create the mount point.

Run the command “”

  • You can of course replace mount_point with the folder name of your choosing.WH.shared.addScrollLoadItem(’48e106e319149d025a1f3b63d3ca7675′)

Mount the ISO.

Run the command “”

  • The argument -o loop is required because the ISO image is not a special device.WH.shared.addScrollLoadItem(‘d11b357aa616aecf19d8a150cbac5199’)

Burning an ISO

Burn from the GUI.

This is the easiest way to burn an ISO.If you are using Fedora(Or Kubuntu) double click the ISO file, and a burn dialogue will appear. WH.shared.addScrollLoadItem(‘4d869e1ee2b0a958ad86f2c68f67899e’)

If you are using Ubuntu, right click the ISO file, and open it with Brasero(Ubuntu), and clicking on Burn.WH.shared.addScrollLoadItem(‘dff7feff32d3b2b71fb73c79aeaab6b2’)

Burn from the command line.

Run the command “”

  • In some systems that have only one DVD/CD writer, you can simply Run the command “sudo cdrecord cdrom.iso”WH.shared.addScrollLoadItem(‘a7df078b680d996887ccd06a33cb2064’)
  • 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.WH.shared.addScrollLoadItem(‘b1f7ed268cf3bb7f38525521e8ff43b6’)

Tips

  • For more information regarding a specific command, consult the Linux man pages. For example, the command “man mount” will display all of the information your system has about the mount command.
  • It is easier to burn an ISO using the graphical software that comes with your distribution, this can be done by right clicking the ISO file, and opening it with Brasero(Ubuntu), or by double clicking on it(Fedora).
  • If the cd is mounted (some are mounted automatically). unmount it with the umount command.
    Example: “sudo umount /dev/cdrom”

Leave a Comment