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 04-30-2008, 07:52 AM   #16
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422

OK, it is pretty clear that ipw2200 isn't loaded, and that is a problem. Have a look at the output of lsmod and see if ipw2200 is listed. If it isn't, then (as root) run modprobe ipw2200 and see if your wireless card shows up in iwconfig. A successful run of modprobe doesn't' give any feedback, it just goes back to the prompt. If modprobe does complain it means there was an error and you should post that message.
 
Old 04-30-2008, 07:57 AM   #17
BlueInkAlchemist
Member
 
Registered: Apr 2008
Location: City of Brotherly Love
Distribution: Ubuntu 10.04 Lucid Lynx
Posts: 49

Original Poster
Rep: Reputation: 15
Looks like you're on the right track. Here's the modprobe dump:

Quote:
[root@localhost ~]# modprobe ipw2200
FATAL: Error inserting ipw2200 (/lib/modules/2.6.24.5-85.fc8/kernel/drivers/net/wireless/ipw2200.ko): Unknown symbol in module, or unknown parameter (see dmesg)
And dmesg:

Quote:
[root@localhost ~]# dmesg | grep ipw2200
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
ipw2200: Unknown parameter `if_name'
[root@localhost ~]# dmesg | grep ieee80211
ieee80211_crypt: registered algorithm 'NULL'
ieee80211: 802.11 data/management/control stack, git-1.1.13
ieee80211: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
So do I need a fresh iteration of the ipw2200 driver? Does the boot order need to be adjusted? Or are my newbieish Linux eyes missing something obvious?

Last edited by BlueInkAlchemist; 04-30-2008 at 01:50 PM. Reason: Added dmesg output
 
Old 04-30-2008, 05:20 PM   #18
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
If you're lucky, running depmod -a as root may solve the problem with the unknown parameter error. If not, you're going to need to do a fresh re-install of ipw2200.
 
Old 04-30-2008, 09:09 PM   #19
BlueInkAlchemist
Member
 
Registered: Apr 2008
Location: City of Brotherly Love
Distribution: Ubuntu 10.04 Lucid Lynx
Posts: 49

Original Poster
Rep: Reputation: 15
depmod did exactly zero so I uninstalled ipw2200 and went to redownload the rpm. When I went to install the package however, I ran into this:

Quote:
Missing Dependency: ipw2200-kmdl-1.2.2-48.fc8 is needed by package ipw2200
Not sure where to find that dependency...
 
Old 05-01-2008, 07:33 AM   #20
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
Quote:
/lib/modules/2.6.24.5-85.fc8/kernel/drivers/net/wireless/ipw2200.ko
D'OH... Sorry, you shouldn't have to re-install the RPM at all. You're running a 2.6.24 kernel, and that should have ipw2200 built in. All you should need to do is install firmware and it should work.

Which, of course, brings up the issue with why it isn't. If I were in your shoes, I would uninstall any RPM you installed for ipw2200 and then try to re-install your kernel RPM. I'm guessing that in all the horsing around, something has gotten overwritten by older software and that is what is going on.
 
Old 05-01-2008, 08:15 AM   #21
BlueInkAlchemist
Member
 
Registered: Apr 2008
Location: City of Brotherly Love
Distribution: Ubuntu 10.04 Lucid Lynx
Posts: 49

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Hangdog42 View Post
...try to re-install your kernel RPM...
I feel like quite the newb. I've searched for the kernel RPM and tried updating it both from search results and yum. It says the package is already installed and I can't find ipw2200.ko by itself outside of what's already in the directory. What am I doing wrong??
 
Old 05-01-2008, 11:36 AM   #22
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
OK, I did some googling, and it looks like FC8 had a hiccup with regards to ipw2200. Unfortunately, the errors being reports (for example see the bottom of this page) aren't the same as yours. I've also seen some reports that even an ndiswrapper install can cause trouble for FC8. So, I think you've got a few options:

1) Try the fix in the page I linked to in this post. Hey, it can't get any worse, can it? I'm a little hesitant to give you advice on how to re-load the kernel package since I don't use Fedora, but I think using some of the rpm flags might work. So rpm --replacepkgs pkgname.rpm should just replace the package even if it is already installed. By the way, you'll want good backups of anything important!

2) Do a re-install of FC8. I don't normally like to suggest this, but I'm not finding your error anywhere out there and I'm wondering if something hasn't gotten corrupted along the way. A re-install would give you a clean system to work from.

3)Switch distros. In the interest of full disclosure, I have a strong personal bias against Fedora. It is a gigantic beta test, and it is continually breaking things. It should come with a big, fat warning that only experienced linux users should touch it, and then only if they have a severe masochistic streak. To be honest, I have no idea why anyone uses it, and if anyone besides Red Hat produced it, it probably would have died by now. Unless you have a strong reason for using Fedora, another distro might suit your needs better.
 
Old 05-01-2008, 11:47 AM   #23
BlueInkAlchemist
Member
 
Registered: Apr 2008
Location: City of Brotherly Love
Distribution: Ubuntu 10.04 Lucid Lynx
Posts: 49

Original Poster
Rep: Reputation: 15
Considering that I am completely new to Linux, I'm more than willing to switch distros. I was introduced to Fedora by a former co-worker. I found most of the applications I added to be easy to install so I feel confident in re-installing them to another distro. What would you suggest? I need something with Apache, php and support for MySQL.
 
Old 05-01-2008, 01:02 PM   #24
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
Quote:
I need something with Apache, php and support for MySQL.
Those three are found in pretty much any of the major distros, so you really can't go wrong there.
Quote:
I found most of the applications I added to be easy to install so I feel confident in re-installing them to another distro.
Since this is likely a major point for you, both Ubuntu (or any of the *buntus) or openSuse have good, automated software installation tools. If you're up for a bit more of a challenge, Debian's apt-get is kind of the granddaddy of the automated software installation tools.

To be honest, I've installed Ubuntu for a couple of friends who had never used Linux, and they found it pretty straight forward to handle. There is also a pretty significant community around Ubuntu, both here and on their own forums, so help is usually plentiful. Ubuntu does have its oddities (its use of sudo can only be classified as abusive and the "lets have a separate distro for each X environment" attitude is just weird) but it is aimed squarely at new Linux users and it does have support for Apache, PHP and MySQL.
 
Old 05-01-2008, 01:08 PM   #25
BlueInkAlchemist
Member
 
Registered: Apr 2008
Location: City of Brotherly Love
Distribution: Ubuntu 10.04 Lucid Lynx
Posts: 49

Original Poster
Rep: Reputation: 15
Hangdog, thank you so much for your help and advice. I'm downloading the iso of Ubuntu now, and if I run into any problems, I'll start a new thread. I actually look forward to reinstalling things like Bluefish, MySQL, VMWare and WINE on Ubuntu... that's how much of a nerd I really am. 8-B Thanks again!
 
  


Reply

Tags
dell, fedora, ipw2200, wireless



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
Fedora Core 8 Wireless Connection on Dell Inspiron 8600 BlueInkAlchemist Linux - Newbie 9 04-07-2008 04:21 PM
Resolutions not working on Dell Inspiron 8600, WSXGA+, Fedora Core 2, nVidia Florian.Burkart Linux - Newbie 5 07-10-2006 03:29 AM
Fedora Core 4 on Dell Inspiron 8600 Sound Doesn't Work rayvenuk Linux - Laptop and Netbook 1 08-06-2005 11:29 PM
Fedora Core 4 - Inspiron 8600 Wireless GweeDo767 Fedora 1 06-18-2005 09:26 PM
Wireless Drivers for RH9 on Dell Inspiron 8600 SidA Linux - Wireless Networking 1 05-07-2004 10:16 AM

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

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