Find the answer to your Linux question:
Results 1 to 5 of 5
I'm trying to mount an iso to copy the files to my hd. I've found the commonly used command to do this... Code: mount -o loop image.iso /mnt/isoimage/ came back ...
  1. #1
    Just Joined! jsatt's Avatar
    Join Date
    Nov 2006
    Location
    Oklahoma
    Posts
    20

    Trouble Mounting ISO image

    I'm trying to mount an iso to copy the files to my hd. I've found the commonly used command to do this...

    Code:
    mount -o loop image.iso /mnt/isoimage/
    came back that mount-point didn't exist so I made the mount point according to someones site that I found...

    Code:
    mkdir -p /mnt/isoimage/
    I ran the mount command again and now it says

    Code:
    mount: Not a directory
    Is there something wrong with the mount command or how I created the mountpoint, or are there other settings in SUSE that I have to change first?

  2. #2
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    That's good, you just forgot a little something, the filesystem type :
    Code:
    mount -t iso9660 -o loop image.iso /mnt/isoimage/
    Also, make sure the mount point is an empty directory.
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  3. #3
    Just Joined! jsatt's Avatar
    Join Date
    Nov 2006
    Location
    Oklahoma
    Posts
    20
    I tried it as
    Code:
    mount -o loop -t iso9660 image.iso /mnt/isoimage/
    before and got the same thing. Also the directory was brand new nothing in it.

  4. #4
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Well, the problem must be with /mnt/isoimage/, verify that this directory exist and that it is writable (proper permissions set).
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  5. #5
    Just Joined! jsatt's Avatar
    Join Date
    Nov 2006
    Location
    Oklahoma
    Posts
    20
    seems like it may be a problem wih the iso, other iso's load alright. Will redownload and try again.

Posting Permissions

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