Created
October 10, 2011 20:55
-
-
Save tuxdna/1276509 to your computer and use it in GitHub Desktop.
Tata Photon Prepaid dongle on Fedora 14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
D="201e:2009" | |
echo "Searching for device: $D" | |
lsusb | grep "$D" | |
retval=$? | |
if [ $retval != 0 ] | |
then | |
echo "Device not found in 'lsusb' listing" | |
exit $retval | |
else | |
echo "Device found in 'lsusb'" | |
fi | |
echo "Switching USB Mode for device: " | |
usb_modeswitch -c /etc/usb_modeswitch.d/"$D" | |
echo "Connecting now: " | |
wvdial |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment