Can I mount an ISO in Ubuntu 10.04 without requiring the use of sudo?
This is all I know how to do:
sudo mount -o loop -t iso9660 image.iso /media/iso
A few answers mentioned using something called "Archive Mounter". I've never noticed this before, but I do see it listed in the "Open With" list when right-clicking ISO files.
Where can I find documentation on how to use it?
To mount an ISO without administrator privileges you can use
fuseiso
:Unmount the image using
fusermount
:If you don't have
fuseiso
you will have to install it from the repositories:You will need administrator privileges to install.
I have an option to "Open With..." when I right click on an ISO with an "Archive Mounter".
This executes
/usr/lib/gvfs/gvfsd-archive
which then mounts the ISO automatically. It's part of gvfs, which is installed by default. I am not sure if Nautilus is set to use it by default. (If someone can clarify in a comment I'll update this)To set it as an option as a default double click, right click on the ISO, select Properties and navigate to this tab and select the radio button to make use of it:
If it's not available as an option click Add and then select it from the list of applications, then you can go back to the tab and select it as a default action if hat's what you want. If you only use it on occasion having it in the Open With tab will have it show up when you right-click and Open With...
I think he means an alternative to mount -o loop?
CD-Rom should work for users by default
The functionality you ask for should be perfectly covered by
pmount
(man page). In your case, the following command:should mount your image.iso under /media/iso
EDIT: this doesn't work, as pmount has no "-o" option