
views
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.
Mounting an ISO
Create the mount point. Run the command "mkdir mount_point" You can of course replace mount_point with the folder name of your choosing.Create and Use ISO Files on Linux Step 2Bullet1.jpg
Mount the ISO. Run the command "sudo mount -o loop cdrom.iso mount_point/" The argument -o loop is required because the ISO image is not a special device.Create and Use ISO Files on Linux Step 3Bullet1.jpg
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. Create and Use ISO Files on Linux Step 4Bullet1.jpg If you are using Ubuntu, right click the ISO file, and open it with Brasero(Ubuntu), and clicking on Burn.Create and Use ISO Files on Linux Step 4Bullet2.jpg
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"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.Create and Use ISO Files on Linux Step 5Bullet2.jpg
Comments
0 comment