LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 10-09-2007, 10:07 AM   #1
v@ny@
Member
 
Registered: Dec 2005
Location: Moscow
Distribution: Ubuntu 8.1
Posts: 104

Rep: Reputation: 15
wireless on HP nx7400 not working kubuntu


Hi

I've been trying to google out the answer to this for a few days already. I found that most people had the wifi working out of the box with this laptop using ubuntu. I found one guy, however, who said that without the driver it wouldn't work. So I downloaded the intel driver and tried to compile it but it fails to 'make'. When I press the button to swich on/off the wifi it just doesn't work. When I try to enable the device it also doesn't respond (it still shows as disabled).

Any help apprecciated.
 
Old 10-15-2007, 11:28 AM   #2
niel_6
LQ Newbie
 
Registered: Jul 2005
Location: Sweden
Distribution: debian and leaving suse
Posts: 5

Rep: Reputation: 1
https://help.ubuntu.com/community/WifiDocs

Check this out, it works for me. :-)
 
Old 10-19-2007, 07:43 AM   #3
v@ny@
Member
 
Registered: Dec 2005
Location: Moscow
Distribution: Ubuntu 8.1
Posts: 104

Original Poster
Rep: Reputation: 15
I read through the site and followed the installation instructions but still doesn't work. I tried installing Mandriva and Ubunto - both had the same problem. Any other ideas?
 
Old 10-21-2007, 09:17 AM   #4
ruppertus
Member
 
Registered: Jun 2007
Location: Poland
Distribution: Arch (used to Debian, Ubuntu)
Posts: 55

Rep: Reputation: 16
Hi,

I've a HP NX7300 it has the same intel chipset for the wifi.
lspci | grep Wireless
10:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG Network Connection (rev 02)


I use Debian Sid (unstable) the solution for make it working could be very similar.

What you need to do is to download one of the newest kernel (2.6.19.x - 2.6.22.x) and linux-headers for that kernel.

After that download ipw3945 module source (it'se called ipw3945-source in debian), firmware (firmware-ipw3945) and deamon (ipw3945d).

You need to make simbolink link to your kernel source:
ln -s /usr/src/kernel-path-to-your-ver /usr/src/linux

Configure and compile the kernel:
make menuconfig
make bzImage modules modules_install

and compile the module source:
- make
- make install

Download binary or compile the deamon and run it.
Turn on the kernel module (it's called ipw3945)

If everything is OK, you should see another network interface:
/sbin/ifconfig -a

After that you need to download wpa_supplicant package and configrure your conection to access point.

DO NOT USE /NDISWRAPPER/. I've heart it's not as good as opensource drivers

Last edited by ruppertus; 10-21-2007 at 09:18 AM.
 
Old 10-24-2007, 08:15 AM   #5
v@ny@
Member
 
Registered: Dec 2005
Location: Moscow
Distribution: Ubuntu 8.1
Posts: 104

Original Poster
Rep: Reputation: 15
I tried but still nothing. 'lspci' shows my card as - Broadcom Corporation BCM94311MCG wlan mini-PCI (rev01). I also tried to google a solution for this card, found a few using ndswraper but none worked. I'm sure the card is working because I use it with windows. I do suspect though that for some mysterious reason this particular laptop has an unusual wlan card for this nx7400 model, since kubuntu seems to work out of the box with others with the same laptop, and they say they have a Intel Corporation wlan...
 
Old 10-27-2007, 05:44 AM   #6
ruppertus
Member
 
Registered: Jun 2007
Location: Poland
Distribution: Arch (used to Debian, Ubuntu)
Posts: 55

Rep: Reputation: 16
Have a look at this website:
http://stevenvi.zendurl.com/docs/gen..._mx8711.html#6

6 Wireless Adapter

There are two ways you can configure your wireless card. Both are quite simple once you know what you are doing, but you'll pull your hair out otherwise. You can use ndiswrapper or you can use wpa_supplicant. Both have their advantages and disadvantages. Using wpa_supplicant, you use a native kernel driver which supports monitor mode, but the signal strenth is weak. Using ndiswrapper, your signal should be stronger. You can decide which is more important to you. Hopefully in the future the kernel driver will be fully operational and ndiswrapper will be unnecessary.
[B]6.1 ndiswrapper

If you choose to use ndiswrapper, then do NOT also use my wpa_supplicant instructions. First, we must obtain a couple packages:

Code:
	# emerge ndiswrapper wifi-radar

Now you probably already have drivers for Windows Vista. Good. Too bad you can't use those. Finding a valid Windows XP driver for this particular chipset is a nightmare. At the time of the writing of this, you can obtain drivers at ftp://ftp.hp.com/pub/softpaq/sp33001-33500/sp33008.exe. To simplify things, you can execute the following at a shell:
Code:
	# emerge cabextract
	# mkdir wifi_temp
	# cd wifi_temp
	# wget ftp://ftp.hp.com/pub/softpaq/sp33001-33500/sp33008.exe
	# cabextract sp33008.exe
	# ndiswrapper -i bcmwl5.inf
	# ndiswrapper -l
The last command should tell you that the driver is installed and that ``device (14E4:4311) present.'' If this is not the case, then something has gone wrong. Assuming everything is okay, we can now delete that stuff we just downloaded:
Code:
	# cd..
	# rm -r ./wifi_temp
Almost there. Now we need to let Gentoo know about the card. This is accomplished by making a new symlink:
Code:
	# ln -s /etc/init.d/net.lo /etc/init.d/net.eth1
	# modprobe ndiswrapper
	# /etc/init.d/net.eth1 start
And optionally, if you want this to start each time you boot,
Code:
	# ndiswrapper -m
	# rc-update add net.eth1 default
You can scan for wireless networks with the wifi-radar program.
6.2 wpa_supplicant

If you choose to use wpa_supplicant, then do NOT also use my ndiswrapper instructions. First, we must obtain the package:
Code:
	# emerge wpa_supplicant
Now before anything will work, we must install the kernel driver:
Code:
	Device Drivers
	  Network device support
	[*] Network device support
	      Wireless LAN
	[*] Wireless LAN (IEEE 802.11)
	      <*> Broadcom BCM43xx wireless support
Next we want to modify /etc/conf.d/net. Add the following lines to that file:
Code:
	modules=( "wpa_supplicant" )
	wpa_supplicant_eth1="-Dwext -c /etc/wpa_supplicant/wpa_supplicant.conf"
	wpa_timeout_eth1=60
And finally, create a symlink so that Gentoo knows about the device
Code:
# ln -s /etc/init.d/net.lo /etc/init.d/net.eth1
and if you want it to automatically start at boot, execute
Code:
# rc-update add net.eth1 default
You can use the wpa_gui program to set up your connections.
 
Old 10-27-2007, 12:12 PM   #7
DiBosco
Member
 
Registered: Nov 2001
Location: Manchester, UK
Distribution: Mageia
Posts: 813

Rep: Reputation: 40
If you have the 3945ABG adapter as the rest of the thread implies, it will definitely work in Mandriva 2008 (it's what I'm have and it works once you set it up in network control centre) and I have seen lots of people say it works in Spring too.

Last edited by DiBosco; 10-27-2007 at 12:13 PM.
 
Old 10-29-2007, 07:59 AM   #8
ruppertus
Member
 
Registered: Jun 2007
Location: Poland
Distribution: Arch (used to Debian, Ubuntu)
Posts: 55

Rep: Reputation: 16
Quote:
Originally Posted by DiBosco View Post
If you have the 3945ABG adapter as the rest of the thread implies, it will definitely work in Mandriva 2008 (it's what I'm have and it works once you set it up in network control centre) and I have seen lots of people say it works in Spring too.
he wrote:
Quote:
lspci' shows my card as - Broadcom Corporation BCM94311MCG wlan mini-PCI (rev01)
so it's not an intel wifi chipset.
 
Old 10-29-2007, 07:46 PM   #9
DiBosco
Member
 
Registered: Nov 2001
Location: Manchester, UK
Distribution: Mageia
Posts: 813

Rep: Reputation: 40
Apologies, Rupp, I saw a post earlier on that mentions it and the NX7400 seemed to have the 3945 from a quick Google search. I must've missed something!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Kubuntu and TI 5-in-1 not working ondrej.kocan Linux - Hardware 2 06-06-2007 04:38 PM
HP nx7400 laptop Wireless NIC wont work on SUSE 10.2 rsxue Linux - Wireless Networking 1 03-29-2007 06:06 AM
compaq nx7400 wireless doesn't work with suse 10.1 Elong Linux - Laptop and Netbook 1 03-08-2007 10:37 AM
HP NX7400 - No HD detected jimaman Linux - Laptop and Netbook 2 12-31-2006 09:05 AM
Installed Kubuntu, Not Working Lambert693 Ubuntu 1 06-24-2005 11:41 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 07:29 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration