LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking
User Name
Password
Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux.

Notices


Reply
  Search this Thread
Old 06-03-2007, 08:19 AM   #1
JasonJensen
LQ Newbie
 
Registered: Jun 2007
Posts: 6

Rep: Reputation: 0
intel 3945 wireless card not functioning


Hi

I'm running Scientific Linux 5 on a toshiba m400 with an intel a/b/g/ wireless card. I'm used ndiswrapper to install the drivers but when I try to activate I get the following message:

Code:
ndiswrapper device wlan0 does not seem to be present, delaying initialization.
googling this hasn't helped me so far.

Information:
Code:
#ndiswrapper -l
w29n51 : driver installed
        device (8086:4222) present (alternate driver: ipw3945)

#ndiswrapper -m
module configuration already contains alias directive

#lspci
...
02:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG Network Connection (rev 02)
...

#ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0E:7B:7B:F2:96  
          inet addr:192.168.0.127  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::20e:7bff:fe7b:f296/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2762 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2668 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:100 
          RX bytes:1939497 (1.8 MiB)  TX bytes:709683 (693.0 KiB)
          Base address:0xbfe0 Memory:ffce0000-ffd00000 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:1776 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1776 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:4143836 (3.9 MiB)  TX bytes:4143836 (3.9 MiB)

#iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

sit0      no wireless extensions.

#dmesg
...
ndiswrapper: no version for "struct_module" found: kernel tainted.
ndiswrapper version 1.45 loaded (smp=yes)
ndiswrapper: driver w29n51 (Intel,06/26/2006,9.0.4.17) loaded
ACPI: PCI Interrupt 0000:02:00.0[A] -> GSI 18 (level, low) -> IRQ 177
PCI: Setting latency timer of device 0000:02:00.0 to 64
ndiswrapper: using IRQ 177
ndiswrapper (NdisWriteErrorLogEntry:192): log: C000138D, count: 0, return_address: f8d7ddb1
ndiswrapper (mp_init:263): couldn't initialize device: C0000001
ndiswrapper (pnp_start_device:440): Windows driver couldn't initialize the device (C0000001)
ndiswrapper (mp_halt:305): device f75e1400 is not initialized - not halting
ndiswrapper: device eth%d removed
...
 
Old 06-04-2007, 06:45 AM   #2
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
You do not need ndiswapper for the wireless device, remove it. It looks like you already have a good ipw3945 driver installed. Check to see if you have everything needed installed;

rpm -qa | grep ipw3845

You may need to download and install the firmware for the device;

yum install ipw3945-firmware

You will have to reconfigure the wlan0 device for the proper driver, check/edit the /etc/modprobe.conf file.
 
Old 06-04-2007, 09:28 AM   #3
2Gnu
Senior Member
 
Registered: Jan 2002
Location: Southern California
Distribution: Slackware
Posts: 1,880

Rep: Reputation: 51
This makes me think you have a module conflict:

#ndiswrapper -m
module configuration already contains alias directive

What module is aliased for the wireless already? Look in /etc/modules.conf or similar. I suspect your distro includes the native ipw3945 module and is trying to use it instead.

It's probably a better choice in any case.
 
Old 06-04-2007, 09:58 AM   #4
JasonJensen
LQ Newbie
 
Registered: Jun 2007
Posts: 6

Original Poster
Rep: Reputation: 0
Thanks, I installed ipw3945-firmware and ipw3945 (actually reinstalled the whole system, but that's for another reason)

Anyway, Device Manager shows ipw3945 under info.linux.drvier as it should, but it doesn't show up in Network Configuration.

I figured I could add "alias wlan0 ipw3945" to modprobe.conf, but that just makes it use a nonexisting device.

I know the PCI ID of the device if that's any help.
 
Old 06-04-2007, 10:01 AM   #5
JasonJensen
LQ Newbie
 
Registered: Jun 2007
Posts: 6

Original Poster
Rep: Reputation: 0
Hi thanks

my problem eventually evolved (and I couldn't find this thread, believe it or not).
Anyway I started a new thread: http://www.linuxquestions.org/questi...d.php?t=558842

it was also suggested there to not use ndiswrapper, and my last post in that thread explains my current situation. I'd appreciate your help.
 
Old 06-04-2007, 11:05 AM   #6
Lenard
Senior Member
 
Registered: Dec 2005
Location: Indiana
Distribution: RHEL/CentOS/SL 5 i386 and x86_64 pata for IDE in use
Posts: 4,790

Rep: Reputation: 58
To: JasonJensen
You might want to try using the rpmforge-release packages instead.

Uninstall the iwp3945 rpm packages;

rpm -qa | grep ipw3945

rpm -e <see the list from the output above>


Install the rpmforge-release package as per the instructions here;

http://dag.wieers.com/rpm/FAQ.php#B

Then do;

yum install dkms dkms-ipw3945 ipw3945d ipw2945-firmware

To Shadow_7:

Maybe upgrade instead: http://ndiswrapper.sourceforge.net/j...ent/view/16/2/

Last edited by Lenard; 06-04-2007 at 11:12 AM.
 
Old 06-04-2007, 12:22 PM   #7
JasonJensen
LQ Newbie
 
Registered: Jun 2007
Posts: 6

Original Poster
Rep: Reputation: 0
ok I did that, still same problem, only now the device manager doens't have a driver bound to the card.

On that note, wireless worked like a charm in Ubuntu 7.04 so it's not a harware problem.

Last edited by JasonJensen; 06-05-2007 at 04:04 AM.
 
  


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
gentoo wlan connection slowly dies unknown_mosquito Linux - Wireless Networking 3 04-18-2006 08:17 PM
Manually starting a USB WLAN key that uses the wlan-ng driver on Auditor PhantmShado Linux - Hardware 1 01-02-2006 05:44 PM
x server dies...dies...dead! aquaboot Linux - Software 2 08-28-2005 11:54 AM
Dell wireless WLAN 1450 Dual Band WLAN Mini-PCI card not recognised pitts68 Linux - Wireless Networking 102 02-28-2005 07:21 AM
Network dies after 25 minutes on FC2 virgos Linux - Networking 8 07-07-2004 10:34 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking

All times are GMT -5. The time now is 07:13 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