>I can use it under windows but Linux does not reconize it although
>usbview  mounts it as /mnt/TRAVELDRIVE

If the mount command works, you might like this little script I have for
mounting devices:

##
datum=`date +%Y-%m-%d`
cd /mnt

# Change to something on your own system!:
mntdir=~/div/usbmounted

case "$1" in
"on")
        while [ -z $device ]
        do device=`ls --full-time | grep $datum|awk '{print $9}'`
                if [ -z $device ]
                then sleep 2
                     echo "Waiting for USB-unit..."
                fi
        done
        mount /mnt/$device
        echo $device > $mntdir
        echo /mnt/$device mounted
;;
"off")
        device=`cat $mntdir`
        umount /mnt/$device
        rm $mntdir
        echo /mnt/$device umounted
;;
"status")
        if [ -f $mntdir ]
        then    echo Mounted: `cat $mntdir`
        else    echo "Nothing mounted"
        fi
;;
*)
        echo "use: $0 on|off"
;;
esac

##

Paul
____________________________________________________
Want to buy your Pack or Services from Mandriva? 
Go to http://store.mandriva.com
Join the Club : http://www.mandrivaclub.com
____________________________________________________

Reply via email to