Sign In

    Enjoy FOSSwire's content? Have it delivered! Subscribe

    Use an ISO as if it were a real CD

    There are a few occasions when you may need or want to use an ISO image without actually burning it. You may want to grab a file off of a CD, or maybe you’re storing an image of a disk for use in Wine. Using mount points, this is an easy task.

    The Quick Way

    On a recent GNOME desktop, opening or mounting ISO images (and other archives) is very simple. Simply right-click the image, and select Open With > Archive Mounter. Done! The image will show as a drive in Places or on your desktop.

    This is the easiest way to grab a file from an image or an archive without having to open an archive manager or extract everything. But, it has its limitations. Because it is mounted under GVFS, it is typically only available on a GNOME desktop. Wine may also have trouble understanding where the image was mounted to as well, and reconfiguring Wine every time you want to change discs is no fun.

    The More Reliable Way

    Almost as quickly as the previous solution, you can mount the image in a terminal:

    sudo mount -o loop /path/to/image.iso /media/cdrom

    We’re using the CD drive location here to keep things simple: GNOME and Wine will both think that it is just a normal CD or DVD. The location of your CD drive on your filesystem may differ; check your distribution documentation for details. The -o loop option is needed because image.iso is not a block device, as the mount command would expect, but a file.

    To remove the mount point again, point the umount command at the location of the CD drive:

    sudo umount /media/cdrom

    Bonus: The Graphical More Reliable Way

    If you find yourself swapping disk images out frequently, you may find Gmountiso useful. You can easily swap out multiple images and mount points, and it works in the same manner as the mount/umount commands do.


    Fedora 9 Installation Troubles

    I've been trying fruitlessly for the past few days trying to install Fedora 9 from the official i386 install DVD. The SHA1 sum validated fine, and I burned it to a new DVD-R disc.

    On inserting it into the machine I was planning to install on, and then post my impressions here on FOSSwire from, I received two errors. The system boots from the isolinux menu without a problem, and works right up until you select to install from your CD/DVD media.

    Initially, I kept being asked for a driver from a driver floppy. There was no specific information as to what driver it was searching for, and I was stumped as Fedora 8 previously installed without a problem on the same hardware.

    Later, this no longer appeared, but instead I got this:

    Fedora 9 Install Fail

    If anyone out there in the community has experienced this issue too, I'd be extremely grateful if they would let me know. Also, any potential solutions to the problem would be a great help.


    K3B - the easy way to burn CDs and DVDs in KDE

    K3B is an application that ships in the default KDE packages in most distributions, however it's a very useful tool that can often be overlooked.

    K3B is a CD and DVD burning application that makes it easy to burn data, audio and disc images onto writable CDs and DVDs. It is a very mature, stable and fully featured application.

    Open up K3B and you are presented with a split view, with directories listed on the left in a tree structure, the current directory's contents on the right and a welcome page at the bottom.

    K3B main window screenshot

    On selecting a task, such as creating a data CD, the bottom view turns into a view of the files that will be on your CD (data, in this case, but obviously it will be different for audio and other projects). You then drag and drop files from the filesystem into your project as it's called. Once you're done, you can Burn the project.

    The whole burning process is very clear and should be easy for anyone familiar burning CDs with software such as Nero over on Windows to pick up and understand.

    There are also options for burning images and doing 1-to-1 disc copies available from the Tools menu.

    One of the main benefits of K3B is that it is such a mature project. While the tree-like interface might not be to everyone's tastes and it does occasionally seem a little outdated, the application is simple to use and intuitive for people who have used other burning software before elsewhere. It is extremely stable in my experience, and it gets the job done.

    For KDE users, K3B is highly recommended for an easy, yet powerful way to burn data, audio and more to disc. GNOME users may want to try Gnomebaker, and if you're into using the command line, give cdrecord a try.


    1. 1
    2. 2