| You will be building a kernel module, so there are some developmental programs that you need to install first. Some of these you may already have installed. I don't recal the exact names, but I will do my best. The kernel packages must be the same version as your running kernel.
kernel-devel (kernel source)
kernel-headers
gcc (Linux C compiler)
make
The results of the ls command look OK. After installing the kernel source and headers, you can look for the .config file in the kernel source folder (/usr/src/).
Since it starts with a dot, it will be hidden. You will have to tell the file browser to show hidden files. This is usually done somewhere in the menu dropdown lists.
You then should be able to cd to the driver folder, and run the commands. It says to run make uninstall first. This must be to remove any existing version old NDISwrapper, if it gives an error it most likely safe to proceed. Run the make uninstall with root privileges (su), and make command as a regular user, then run the make install command with root privileges (su).
If you get errors, post them so that we can work them out.
__________________
Paul
Please do not PM me with requests for help. I will not reply.
Last edited by waterhead; 09-23-2009 at 10:43 AM..
Reason: needed to be root for make uninstall
|