Announcement

Collapse
No announcement yet.

mounting an .iso

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    mounting an .iso

    Hi linux GOD's
    I seem to be having troubles with gmount (sorry couldn't find "k"mount) for a game .iso file (has two actually) I REALLY want to install with wine.
    I have looked for solutions and tried three of them with no luck.
    Is gmount the way to go or should I use something else?
    Intel E6500 CPU - 4Gb Ram- Asus EN9500GT 1Gb GPU....

    #2
    Re: mounting an .iso

    How to mount a .iso image so you can work with the files in it:


    Steps:

    1. Open a console window. As root (or with "sudo" prefix) make a suitable mount point:
    Code:
    mkdir -p /mnt/myiso
    2. Change to the directory where the downloaded ISO is located, and using the Linux mount command:
    Code:
    mount -o loop xyz.iso /mnt/myiso
    3. Change to the /mnt/myiso directory. Verify that the ISO files are there:

    Code:
    ls -l
    Now you can use them however you want.

    Comment


      #3
      Re: mounting an .iso

      Thanks for the code. It worked well.
      PS; If I need to use the second iso for the game would I just create a a new mount point like /mnt/myiso1 and mount the iso in there?
      Intel E6500 CPU - 4Gb Ram- Asus EN9500GT 1Gb GPU....

      Comment


        #4
        Re: mounting an .iso

        yep. you are correct!
        --------<br />Kasun Gajasinghe,<br />University of Moratuwa,<br />Sri Lanka.<br /><br />Blog: http://kasunbg.blogspot.com<br />Twitter: http://twitter.com/kasunbg

        Comment


          #5
          Re: mounting an .iso

          I have had to use the same mount point in the past because the windows installer "wanted" the files in the same location.

          In that case - keep a terminal open and when it says "change disks", type

          Code:
          umount /mnt/myiso && mount -o loop xyz2.iso /mnt/myiso
          where xyx2 is the name of the second iso file

          Please Read Me

          Comment


            #6
            Re: mounting an .iso

            Intel E6500 CPU - 4Gb Ram- Asus EN9500GT 1Gb GPU....

            Comment

            Working...
            X