Find the answer to your Linux question:
Results 1 to 5 of 5
hey there i was trying to find a way to simple mounting and unmountig iso images and so far i found this link http://linux.softpedia.com/get/Deskt...age-2216.shtml but after downloading and installing this ...
  1. #1
    Just Joined!
    Join Date
    Nov 2006
    Posts
    79

    mounting iso images

    hey there i was trying to find a way to simple mounting and unmountig iso images and so far i found this link
    http://linux.softpedia.com/get/Deskt...age-2216.shtml

    but after downloading and installing this msg keeps coming whenever i try to mount iso file



    can this be fixed or there is a better application for that or code ??

  2. #2
    Linux Newbie jpalfree's Avatar
    Join Date
    Jul 2005
    Location
    Montreal, CA
    Posts
    198
    Command Line is your friend . It's actually really easy to mount an iso. Just do something like this, as root
    Code:
    # mkdir A_DIRECTORY
    # mount -t iso9660 -o loop /PATH/TO/ISO /PATH/TO/A_DIRECTORY
    • -t iso9660 - tells mount what type of filesystem it is
    • -o loop - means don't mount an actual device but instead a file on your HD


    If you want to have this iso mount permanently you can add a line to your /etc/fstab file like so (right spacing is important):
    /PATH/TO/ISO /PATH/TO/A_DIRECTORY iso9660 loop,users,ro,noauto 0 0
    Then all you need to do to mount it is:
    Code:
    $ mount /PATH/TO/A_DIRECTORY
    If you still have questions, don't hesitate to ask.
    Avatar from xkcd.com, a hilarious computer related webcomic.

  3. #3
    Just Joined!
    Join Date
    Nov 2006
    Posts
    79
    thanks . i knew the method of command line but my study deals with so many iso and nrg images

    for example i might mount 4 iso images in one hour so it's for sure not good to use the command line i was looking for something easier to do that and that application does that

    well i didn't try it but the comment in softepedia told so and it was good

    i hope there is some kink of application for that to make the hob easier
    that is why i mentioned the coding in the last place

    thanks hope you can help

  4. #4
    Just Joined!
    Join Date
    Jan 2007
    Posts
    17
    The program might not like the fact that the file name has two dots in it. Change the filename to Foxit.iso. It might think the ending is .PDF instead of .iso

  5. #5
    Just Joined!
    Join Date
    Nov 2006
    Posts
    79
    thanks i'll check it out

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...