I used to connect to the internet using my usb-modem in the earlier versions of ubuntu. But after installing precise i'm not able to connect to the internet. Please help. I don't want to use windows but forced to do so.
Asked
Active
Viewed 4,182 times
1 Answers
4
The OP reported solving the problem by using information in this forum thread:
No additional information was provided about what part of the thread was helpful, but it may have been this post by AlexFish.
Those instructions were, in summary:
Run
lsusbto get the device's identifying numbers. Replace each instance of1C9Eand9605below with the correct values for the device on your system, as revealed in this step.Edit the file
/usr/bin/option_1C9E:9605as root, giving it the contents:#! /bin/bash echo 1C9E 9605 > /sys/bus/usb-serial/drivers/option1/new_idMake it executable:
chmod +x /usr/bin/option_1C9E:9605Edit
/etc/udev/rules.d/option.rulesas root, adding:ATTRS{idVendor}=="1c9e", ATTRS{idProduct}=="9605", RUN+="/sbin/modprobe option" ATTRS{idVendor}=="1c9e", ATTRS{idProduct}=="9605", RUN+="/usr/bin/option_1C9E:9605"It may work immediately; otherwise unplug it from the machine and plug it back in.
Concept and commands taken directly from the post; explanation and formatting redone.
Eliah Kagan
- 119,640