Zdravim vsechny,
Poridil jsem si nb HP nx7400 a nove ubuntu Edgy Eft a samozrejme mi neslapala wifina. Procetl jsem mnoho prispevku a progooglil spoustu retezcu, az nakonec se mi povedla zprovoznit. Posilam tento prispevek jako pomoc tem, kteri resi stejny problem, tak aby u toho tech nekolik hodin nemuseli travit, kdyz uz nekdo musel (já).
Nejedna se ani nahodou o muj napad, nybrz o ukradeny postup uz nevim odkud, cimz dekuji autorovi

Tak tady to je (holt anglinu musite umet jako kdyz bicem mrska, ale ne, to zvladnou vsichni):
1. You need to get the compilers and linkers in order to compile the ndiswrapper kernel module and userland utilities:
#sudo apt-get install build-essential
2. You need to get the kernel header files. There are several options here depending on what kernel you are using. Since I use the linux-686-smp, I grabbed the 686 kernel header:
#sudo apt-get install linux-headers-2.6.15-25-686
Note: linux-headers-2.6.15-25-686 depends on linux-headers-2.6.15-25-386. So you will have two linux-headers directories showing up in /usr/src directory. Don't remove the 386 directory!
3. Download the latest ndiswrapper STABLE release 1.19 tar ball from ndiswrapper.sourceforge.org and place it in /usr/src
4. Unpack the source tar ball:
#sudo tar xzvf ndiswrapper-1.19
5. Read the INSTALL file in ndiswrapper-1.19 directory.
6. Build the kernel module and utilities:
# cd /usr/src/ndiswrapper-1.19
# sudo make uninstall
# sudo make
# sudo make install
7. Remove the old ndiswrapper module in case you already inserted it in kernel:
# sudo modprobe -r ndiswrapper
8. Reinstall the winows driver:
# sudo ndiswrapper -e bcmwl5
# sudo ndiswrapper -i /lib/windrivers/bcmwl5.inf
Note that if your winows drivers are located elsewhere, change the /lib/windrivers/ to wherever you saved the windows drivers. I won't get into details about how to get the drivers.
9. Insert the kernel module
# sudo modprobe ndiswrapper