My 3G dongal requires the proprietary driver to properly work with Ubuntu.
It comes along with Huawei Mobile Partner installer. I was able to install Huawei Mobile Partner and the corresponding driver in Ubuntu Linux 10.04 without an any problem.
However, I can't install it in Ubuntu 13.10. (Didn't work since 12.04)
It gives the below error.
I've tried installing build-essential.
Any help is appreciated!
"make: *** [install] Error 2
Install NDIS driver failed.
The compiling environment is not all ready.
Please check gcc, make and kernel build(/lib/modules/3.8.0-26-generic/build) to be all installed?
Now please enter any key to finish other installations.
NDIS is disabled, and only Modem can be used".
These packages gcc, make, and others are installed.
(The output is taken from a previous version of Ubuntu. The same error message is generated in 13.10. You can regenerate this error by trying to install my driver package. The mobile broadband is not required for the installation)
Solution for NDIS Driver failed to install problem on HUAWEI Broadband devices:
Run the below command after installing the
Huawei Modem Driver
with NDIS driver install failed.Locate to the line
Ln 2718
,changedbg ("cant't kmalloc dev");
to//dbg ("cant't kmalloc dev");
(adding double//
infront of dbg),save the file and close the terminal.Open new terminal and Change the directory path to
/usr/local/Mobile_Partner/driver
by running the below commandReinstall the driver by running the below command
Now,it shows NDIS driver installed successfully.
Another method:
Run the below script only after
Install NDIS driver failed
errorCreate a script named ndis.sh with the above code and save it to your
Home
directory.Run the below command to give execute permission for the created script.
Run the
ndis.sh
script,That's all.I created this script because in the above answer,i mentioned to locate to the line 2718 and add
//
infront of it.But in some cases the codedbg ("cant't kmalloc dev");
was not on the line 2718,so it was so hard to find the line of code manually and then add//
infront of that.This script automatically search for the line which contains the code
dbg ("cant't kmalloc dev");
and put//
infront of it.So that the line of code changes to comment,and then make the NDIS driver to install successfully.