Quote:
|
Originally Posted by jstarks4444 Hey, I'm trying to configure a Linksys WUSB54G network adapter to work on Xubuntu. If I'm not mistaken the default drivers don't work and I need to install "ndiswrapper". I downloaded version 1.8 and unarchived it. When I tried
sudo make distclean
sudo make
sudo make install
however I was getting various errors such as "implicit declaration of function --"
How can I fix this problem? All help appreciated! |
Hi jstarks4444,
Without posting the detail of your make output, its difficult to help.
Typically, I capture make's output by using the C-shell command:
make >& make.all
If you are using the bash shell, then you need to do something like what is required for capturing the output of make using the Bourne Shell, i.e. /bin/sh which /bin/bash can process, such as:
make 1>out.1 2>out.2 or something like that (I need to look it up as I haven't used sh in a while).
Implicit declaration of function may mean that you do not have some standard header files installed or may be for some other reason - can't tell by what you posted.
List the detail of your make output if you want further help.
-- Tom