noch eine ganz andere Lösung für dein Problem:
http://www.desktop-linux.net/ezmount.htm
Musst du nur anpassen für deinen zip-drive
http://www.desktop-linux.net/ezmount.htm
Musst du nur anpassen für deinen zip-drive
This script is designed to make it easy for people to mount cd and dvd drives. The script will mount the device if not mounted and open the KDE file manager. If it is mounted, it will unmount the device and eject it.
1) save this as script
#! /bin/sh
if mount | grep iso9660
then umount /cdrom
echo "\"unmounting cd-rom now... \""
eject /dev/hdc
else mount -t iso9660 /dev/hdc /cdrom
echo "\"mounting cd-rom now...\""
kfmclient openURL /cdrom
fi
2) make it executable
chmod +x ezcdmnt
3) create a desktop icon for calling this script