Esta página, Nokia Internet Stick CS -10 no Linux , descreve um método para fazê-lo funcionar.
[...] you just need to umount the device using "eject", This is because this stick identifies itself as a "CD-ROM" and when you use "eject" it changes its behaviour and start acting like a modem.
[...] You just need to create this rule in /etc/udev/rules.d/90-nokia-zerocd.rules
SUBSYSTEMS=="usb", SYSFS{idVendor}=="0421", SYSFS{idProduct}=="060c", ACTION=="add", PROGRAM=="nokia-testcd %M %s{serial}", RUN+="/usr/bin/eject -s %k", OPTIONS+="last_rule"
As you can see, it depends on a program "nokia-testcd", it is just a simple bash script with this code:
#!/bin/sh # Don't eject if flag in place if [ -f /etc/udev/nokia-zerocd-noeject ]; then exit 1 fi # Extract USB serial into major and minor numbers minor='echo $2 | sed 's/.[0-9]*\.//'' major='echo $2 | sed 's/\.[0-9]*$//'' # Compare with current software version if [ "$major" -gt "0" ] || [ "$minor" -gt "10" ]; then exit 1 fi # Clean exit on match exit 0
Just copy the code in /lib/udev/ and make it executable (chmod 0755 /lib/udev/nokia-testcd). Once you have written the udev rule, and "installed" the nokia-testcd script just restart udev (or reload it) and plug your Nokia CS-10.