Has anyone tried to connect Reliance NetConnect in Ubuntu ?
migrated from stackoverflow.com May 18 '10 at 14:31
This question came from our site for professional and enthusiast programmers.
|
From twincling:
You can see output like this
Note down id Vendor and id Product some where.
In the grub.cfg file add the following lines at the end of kernel line (Not in the next line)
(Replace the the values with your's)
Once the connection is established you can close the terminal. - To disconnect...
Extra In case if you want to monitor internet speed then install pppstatus package (sudo apt-get install pppstatus) and type sudo pppstatus in the terminal. | ||||
|
feedback
|
|
This worked for me on Lucid Lynx Source/credits : http://freedomyug.wordpress.com/2010/05/08/how-to-configure-reliance-huawei-modem-with-ubuntu-10-4-lts-lucid-lynx/ We need to install usb-modswitch usb-modswitch-data Two ways to do it, Automatic from package manager, (Recommended) Paste this to terminal (Applications=> Accessories=> Terminal) sudo apt-get install -yq usb-modeswitch usb-modeswitch-data Manual 1. Open a Terminal from Applications=> Accessories=> Terminal
dpkg -i usb-modeswitch-data_20100127-1_all.deb
For 64 bit : wget -c http://mirrors.kernel.org/ubuntu/pool/universe/u/usb-modeswitch/usb-modeswitch_1.1.0-2_amd64.deb dpkg -i usb-modeswitch_1.1.0-2_amd64.deb For 32 bit wget -c http://mirrors.kernel.org/ubuntu/pool/universe/u/usb-modeswitch/usb-modeswitch_1.1.0-2_i386.deb dpkg -i usb-modeswitch_1.1.0-2_i386.deb Once you install both packages, you should have the modem detected and then use networkmanager to configure it. What does usb-modswitch do and why is it necessary? USB devices, specially high speed wireless WAN dongles such as the Huawei Modem that comes with Reliance NEtconect Broadband+ is only detected as USB storage device by Ubuntu and not as a Serial Modem in order for it to function as one. usb mode switch does the work of switching the mode to modem from the storage only modem and make it awailable to be used as a internet modem device. | |||
|
feedback
|