Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > Wireless Internet > ubuntu is not detecting my network !!

Forgot Password?
 Wireless Internet   Anything related to getting wireless set up in Linux. WLAN, WiFi, etc.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 07-03-2009   #11 (permalink)
Just Joined!
 
Join Date: Jun 2009
Posts: 16
i am trying to post the content of wireless setup file to you but i get this message " You are only allowed to post URLs to other sites after you have made 15 posts or more. " so what should i do in this case
drwolf is offline  


Reply With Quote
Old 07-03-2009   #12 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,954
First, surround it with "code" tags,by using the # sign at the top of the new message window. You also should click the "disable smilies in text" option, found below the new message window.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 07-03-2009   #13 (permalink)
Just Joined!
 
Join Date: Jun 2009
Posts: 16
still i am getting the same message so i am attaching the file
Attached Files
File Type: txt wireless_setup.txt (8.8 KB, 1 views)
drwolf is offline   Reply With Quote
Old 07-03-2009   #14 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,954
Thank You.

This is your wireless.
Code:
0b:00.0 Network controller [0280]: Broadcom Corporation BCM4311 802.11b/g WLAN [14e4:4311] (rev 01)
	Kernel driver in use: b43-pci-bridge
	Kernel modules: ssb, wl
As you can see, it says that it is using the ssb and wl drivers. Th ssb driver is used in conjunction with the b43 driver. The network driver modules that you have loaded are these:
Code:
Module                  Size  Used by
b43                   131356  0 
rfkill                 17176  2 rfkill_input,b43
mac80211              216820  1 b43
cfg80211               32392  1 mac80211
led_class              12164  1 b43
wl                   1076372  0 
ieee80211_crypt        13572  1 wl
b44                    35984  0 
ohci1394               37936  0 
mii                    13440  1 b44
ssb                    40580  2 b43,b44
You have two drivers loaded for the wireless, the b43 and the wl driver. This will cause the wireless to not function. In most cases the wl driver would be considered the better one to use, but in your case, you have another thing to consider.

The b43 module uses a helper module named ssb. The ssb module is also used by your wired connection driver b44. To use the wl wireless module you would need to remove the b43, b44 and ssb modules. This would make your wired connection non-functioning, ever.

So, the best thing to do is remove the wl module, install the firmware and use the b43 driver. If you ran the b43-fwcutter program earlier, and said yes when it asked to download and install the firmware, then you just need to do this.
Code:
sudo modprobe -r b43
Code:
sudo modprobe -r wl
Code:
sudo modprobe b43
That should get your wireless to work. Let us know how things are, and if OK, we can make a more permanent fix.

EDIT: I see from the info in that you provided that the firmware isn't installed. Run this command:
Code:
sudo apt-get install b43-fwcutter
When it asks:"Download and install firmware?". Answer "Yes" (just press enter).
__________________
Paul

Please do not PM me with requests for help. I will not reply.

Last edited by waterhead; 07-03-2009 at 06:59 AM..
waterhead is offline   Reply With Quote
Old 07-03-2009   #15 (permalink)
Just Joined!
 
Drunk_Mexican's Avatar
 
Join Date: May 2008
Location: San Antonio, TX
Posts: 49
Code:
Broadcom Corporation BCM4311 802.11b/g
FYI: I have this exact same thing. I know for a fact that it works out of the box no problems in Ubuntu 9.04. It also works in Debian 5.0 and Fedora 11 with some tweaking.

I would say just upgrade your ubuntu.
Drunk_Mexican is offline   Reply With Quote
Old 07-03-2009   #16 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,954
The problem is that there are two drivers competing for the wireless. This can be fixed by removing one of the drivers, no upgade is needed.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Old 07-04-2009   #17 (permalink)
Just Joined!
 
Join Date: Jun 2009
Posts: 16
thank you for your help , unfortunately the situation is the same . i will go to do clean install of ubuntu 9.04 then i will inform you tomorrow
drwolf is offline   Reply With Quote
Old 07-04-2009   #18 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,954
Doing a "clean" install will most likely end in the same result. You need the ssb module for your wired internet connection. To use the wl module, you have to remove the ssb module. That is why you must remove the wl wireless module and use the b43 wireless module instead. To use the b43 module you must also install the needed firmware.

This is what you must do in order for both the wired and wireless connections to work. You will have the same problem on any other version of Ubuntu. Possibly using a different distro will give you better results. Try using Fedora 11, you will still need to install the firmware. You can download a .rpm file containing the firmware from here:

Linux Forums

There is one thing I didn't have you try. I recall there being a distinct order that the modules need to be loaded, but I don't recall the exact order. Try removing all of the effected modules first.

sudo modprobe -r wl
sudo modprobe -r b44
sudo modprobe -r b43
sudo modprobe -r ssb

Then reload them:

sudo modprobe ssb
sudo modprobe b43
sudo modprobe b44

I hope that works.
__________________
Paul

Please do not PM me with requests for help. I will not reply.

Last edited by waterhead; 07-04-2009 at 11:40 PM..
waterhead is offline   Reply With Quote
Old 07-05-2009   #19 (permalink)
Just Joined!
 
Join Date: Jun 2009
Posts: 16
it didn't work , i am wondering why i am not able to manually figure ( or add ) a wired or wireless Internet without all these commands ... it is really a remarkable drawback for naive customers or end users as connectivity is their main primary endpoint ...
thanks and i think it is time for ubuntu 9.04 unless you are gonna to you suggest something else ?
drwolf is offline   Reply With Quote
Old 07-05-2009   #20 (permalink)
Trusted Penguin
 
waterhead's Avatar
 
Join Date: Jul 2004
Location: Franklin, Wisconsin
Posts: 3,954
Try removing all of the network drivers, and only loading the wl driver.

sudo modprobe -r b44
sudo modprobe -r b43
sudo modprobe -r wl
sudo modprobe -r ssb

Then load only the wl module

sudo modprobe wl

When manually unloading/loading modules, You can't reboot and expect it to work. rebooting will load the default modules. If you find a configuration that works, we can modify which drivers will load, and prevent some from loading entirely.

Try Ubuntu 9.04 as a LiveCD, and see what you get. Use the commands from this thread to diagnose it.
__________________
Paul

Please do not PM me with requests for help. I will not reply.
waterhead is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 08:47 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2