Description: This script mount/umount selected disk images(iso, nrg, img etc) without root password. For each image script create a separate directory(with the name of image).
This is a test version, and if you have an error,please, describe it here.
Dependencies: sudo
Installation. Unpack and run(as root): sh install.sh
thanks a lot for your script, but the install script doesn't work in Ubuntu 8.10.
In Ubuntu 8.10
file="$1"
will return the full path (e.g., /home/user/Desktop/xx.iso), and you don't want the folder name to be the full path, we only need the file name of the iso.
so it is better to extract on the file name instead of the full path.
file=${file%.$file_ext}
file=${file##*/}
Ratings & Comments
3 Comments
Installer does not work with me, but moiso and umoiso work just fine (need permitions to allow executing as program) very nice xD
I had the opportunity to check the script for 3 systems and installer worked everywhere, are you install this script from root?
thanks a lot for your script, but the install script doesn't work in Ubuntu 8.10. In Ubuntu 8.10 file="$1" will return the full path (e.g., /home/user/Desktop/xx.iso), and you don't want the folder name to be the full path, we only need the file name of the iso. so it is better to extract on the file name instead of the full path. file=${file%.$file_ext} file=${file##*/}