Well detected and easy to use. Plug and Play except for a little permission problem in suse.
Suse won't let the scanner device be used by a normal user so you have to launch xsane or kooka as root. Since the device names change every reboot I wrote this little script to fix it and launch kooka:
Quote:
#!/bin/bash
# suscan
#This script will detect the usb scanner, set proper
#permissions for it and start kooka
#requirements: kooka
# Copyright Jean-Francois Ouellette (Steel_J) 2007-01-03
# This software is licensed under the GNU General Public License
# For the full text of the GNU GPL, see:
#
# http://www.gnu.org/copyleft/gpl.html
#
# No guarantees of any kind are associated with use of this software.
#Begin
#Find location of scanner device
DEV1=` sane-find-scanner | grep libusb | cut -d ":" -f 2`
DEV2=` sane-find-scanner | grep libusb | cut -d ":" -f 3`
#for testing purposes
#echo $DEV1
#echo $DEV2
#set permission to proper /dev section
sudo chmod a+w /dev/bus/usb/$DEV1/$DEV2
#Start kooka
kooka
exit;
|