
moiso
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
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
To uninstall run as root:
sh uninstall.sh
If you have any suggestions - write them here.
Sorry for my bad english.
12 years ago
added checking file extensions
changed uninstaller
12 years ago
added checking file extensions
changed uninstaller
stratok
12 years ago
Report
skvitek
12 years ago
Report
qu9542
11 years ago
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##*/}
Report