Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Servers & Networking
FedoraForum Search

Forgot Password? Join Us!

Servers & Networking Discuss any Fedora server problems and Networking issues such as dhcp, IP numbers, wlan, modems, etc.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 17th July 2011, 02:56 PM
Diabellical Offline
Registered User
 
Join Date: Jul 2011
Posts: 6
macossafari
Smile No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

I just installed Fedora (15) for the first time. However I do not have a wired internet connection, and have the infernal BCM4312 and I understand the STA works with this (It has worked for me with other distros).

In another thread, I read that I can download the relevant files (using another computer) from FedoraFusion, transfer them to the wireless computer and install.

Can someone suggest which files, within the FedoraFusion 15 are needed?

i686.

Many thanks, and I hope to enjoy Fedora!

Last edited by Diabellical; 17th July 2011 at 03:00 PM.
Reply With Quote
  #2  
Old 17th July 2011, 03:04 PM
stoat Offline
Registered User
 
Join Date: Jun 2006
Posts: 7,551
linuxfirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

To me, the BCM4312 is not "infernal". It works well for many people in Fedora with either the b43 driver or broadcom-wl. The problem is with Fedora IMO, not the chipset. Fedora does not include the broadcom-wl driver nor the firmware needed by b43 for that chipset.

If you want to try the broadcom-wl driver in Fedora 15, then you easily can install the kmod version while in an offline situation. The akmod version is difficult because of an unpredictable set of dependencies. The files you need for the kmod verson are kernel version specific, so return and post your running kernel verson...
Code:
uname -r
P.S.: Thinking about it some more, none of this is a "problem" with Fedora as I said above. Fedora (and most Linux distros) include many wireless drivers and firmware. And that's nice. But every wireless device I ever bought required me to install something for it to work in Windows. So why should I expect a Linux distro to be ready to run anything in the universe of hardware? Windows sure can't do that. The main difference (and real problem, IMO) is that most hardware makers include what I need for Windows in the box with their gizmos, and very few include Linux drivers in the box. And even that I can understand (what's their incentive to do that?).
Reply With Quote
  #3  
Old 17th July 2011, 03:17 PM
Diabellical Offline
Registered User
 
Join Date: Jul 2011
Posts: 6
macossafari
Smile Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

kernel: 2.6.38.6-26.rc1.fc15.i686
Reply With Quote
  #4  
Old 17th July 2011, 03:29 PM
stoat Offline
Registered User
 
Join Date: Jun 2006
Posts: 7,551
linuxfirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

With another operating system or computer, navigate back to this page and download these files from RPM Fusion...
kmod-wl-2.6.38.6-26.rc1.fc15.i686-5.60.48.36-2.fc15.1.i686.rpm
kmod-wl-5.60.48.36-2.fc15.1.i686.rpm
broadcom-wl-5.60.48.36-1.fc13.noarch.rpm
Somehow transfer them to the Fedora filesystem, open a terminal in Fedora, change directories in the terminal to the folder with the three rpms, and install all three of them at once...
Code:
su
yum --disablerepo=* localinstall *.rpm
Reply With Quote
  #5  
Old 17th July 2011, 04:13 PM
Diabellical Offline
Registered User
 
Join Date: Jul 2011
Posts: 6
macosfirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

can you explain what the
Code:
 --disablerepo=*
does as this noted as an unrecognized option.

Many thanks for the help!
Reply With Quote
  #6  
Old 17th July 2011, 04:22 PM
stoat Offline
Registered User
 
Join Date: Jun 2006
Posts: 7,551
linuxfedorafirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

Try it again without that. Or, install them this way...
Code:
su
rpm -ivh *.rpm
Then restart NetworkManager or reboot. Check NetworkManager for networks.

If the wireless works after that, you still need to install the RPM Fusion repos...
http://rpmfusion.org/Configuration
Reply With Quote
  #7  
Old 17th July 2011, 04:41 PM
Diabellical Offline
Registered User
 
Join Date: Jul 2011
Posts: 6
macosfirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

Quote:
Originally Posted by stoat View Post
Try it again without that. Or, install them this way...
Code:
su
rpm -ivh *.rpm
Then restart NetworkManager or reboot. Check NetworkManager for networks.

If the wireless works after that, you still need to install the RPM Fusion repos...
http://rpmfusion.org/Configuration

sorry for so many newbie questions: i am getting an
Code:
invalid option -i
response to that. When I try installing via gui though folder (install package) it just sends me though dependencies.
Reply With Quote
  #8  
Old 17th July 2011, 05:53 PM
stoat Offline
Registered User
 
Join Date: Jun 2006
Posts: 7,551
linuxfirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

yum --disablerepo=* localinstall *.rpm
yum localinstall *.rpm
rpm -ivh *.rpm

The option "--disablerepo=" is a valid yum command option. The option "-i" is a valid rpm command option. Maybe you're typing something incorrectly.

The dependency issue arises when you attempt to install the packages one at a time. They are dependent upon each other and must all be included in the same yum or rpm command. That's what the wildcard was for. In your GUI app, maybe you can select all three to be installed. Or you can try these (after changing directories in the terminal)...

yum localinstall kmod-wl-2.6.38.6-26.rc1.fc15.i686-5.60.48.36-2.fc15.1.i686.rpm kmod-wl-5.60.48.36-2.fc15.1.i686.rpm broadcom-wl-5.60.48.36-1.fc13.noarch.rpm
rpm -ivh kmod-wl-2.6.38.6-26.rc1.fc15.i686-5.60.48.36-2.fc15.1.i686.rpm kmod-wl-5.60.48.36-2.fc15.1.i686.rpm broadcom-wl-5.60.48.36-1.fc13.noarch.rpm
Reply With Quote
  #9  
Old 17th July 2011, 06:43 PM
Diabellical Offline
Registered User
 
Join Date: Jul 2011
Posts: 6
macosfirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

Quote:
Originally Posted by stoat View Post
With another operating system or computer, navigate back to this page and download these files from RPM Fusion...
kmod-wl-2.6.38.6-26.rc1.fc15.i686-5.60.48.36-2.fc15.1.i686.rpm
kmod-wl-5.60.48.36-2.fc15.1.i686.rpm
broadcom-wl-5.60.48.36-1.fc13.noarch.rpm
Somehow transfer them to the Fedora filesystem, open a terminal in Fedora, change directories in the terminal to the folder with the three rpms, and install all three of them at once...
Code:
su
yum --disablerepo=* localinstall *.rpm
So like a fool, I hadn't moved yet to root, so I suppose some of the commands were unacceptable without superuser status. Coming from Ubuntu this was a silly mistake on my part. Everything worked great, and wireless is now fixed.

Many thanks to you Stoat!
Reply With Quote
  #10  
Old 17th July 2011, 07:16 PM
stoat Offline
Registered User
 
Join Date: Jun 2006
Posts: 7,551
linuxfirefox
Re: No Wired: which tools from Fedora(15) Fusion --> broadcom STA for wireless?

Very well.

You aren't finished until you install the RPM Fusion repos.
Reply With Quote
Reply

Tags
bcm4312, fusion, wireless

Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
wirless card not working on fedora 7 sasikanthgudla Servers & Networking 3 10th September 2008 10:34 AM
Need Help installing a Broadcom 4309 wirless on HP dv8000 with FC8 Flyboy(52I) Hardware & Laptops 13 14th January 2008 08:48 AM
Broadcom wirless st up ?? How using BCM cutter mrsurf Hardware & Laptops 5 26th August 2007 10:31 AM
Wirless with WAP on FC6? New to Fedora and Linux hat-trick Servers & Networking 23 4th February 2007 08:12 PM
Broadcom wirless card detection issues treak007 Hardware & Laptops 2 25th May 2006 06:37 PM


Current GMT-time: 16:37 (Friday, 24-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat