LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions
User Name
Password
Linux - Distributions This forum is for Distribution specific questions.
Red Hat, Slackware, Debian, Novell, LFS, Mandriva, Ubuntu, Fedora - the list goes on and on... Note: An (*) indicates there is no official participation from that distribution here at LQ.

Notices


Reply
  Search this Thread
Old 05-01-2010, 04:19 PM   #106
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297

Hi,

That's good. Next step, identifying your NIC (Network Interface Card). I had to go back to the first page of this thread to find it (remembered pixellany had you run the lspci command). Your Wireless card is the following:
Code:
0c:00.0 Network Controller: Broadcom Corporation BCM4312 802.11b/g (rev 01)
so we need to get the driver for that card online. In order to download the correct driver you need to run this command:
Code:
lspci -n
and look for the line that holds the code 0c:00.0 and post that line here so we can identify the chipset ID.

Kind regards,

Eric
 
Old 05-01-2010, 04:21 PM   #107
kamon
Member
 
Registered: Apr 2010
Location: Manchester
Distribution: Ubuntu
Posts: 87

Original Poster
Rep: Reputation: 15
0c:00.0 0280: 14e4:4315 (rev 01)
 
Old 05-01-2010, 04:26 PM   #108
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Ok, now we got the chipset ID. One question before all else, do you have a Windows computer on which you can unpack the drivers (come in an EXE file). If not then you'll have to install another package first.

Kind regards,

Eric
 
Old 05-01-2010, 04:29 PM   #109
kamon
Member
 
Registered: Apr 2010
Location: Manchester
Distribution: Ubuntu
Posts: 87

Original Poster
Rep: Reputation: 15
Erm... I have no idea :$
 
Old 05-01-2010, 04:33 PM   #110
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi,

You don't know if you have a computer with Windows on it? Ok, no problem, first run this:
Code:
sudo apt-get install cabextract
when that's installed correctly run the following:
Code:
mkdir drivers
cd drivers
wget ftp://ftp.compaq.com/pub/softpaq/sp33001-33500/sp33008.exe
cabextract sp33008.exe
The first command installs a program you need to extract the cabinet file that comes for Windows. Next with the mkdir command you're creating a directory to keep the driver under your home directory. With the wget command you used previously you'll download the necessary cabinet file. and with the last command you'll extract it.

Please post any errors here (or success for that matter )

Kind regards,

Eric
 
Old 05-01-2010, 04:37 PM   #111
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
This is slightly off-topic to the recent discussion, but:

Out of curiousity, I fired up Fedora 12 and found that they have 2 versions of the Broadcom B43 driver installed by default. The also have some kind of utility available.

See attached file
Attached Thumbnails
Click image for larger version

Name:	Fedora_SW.jpg
Views:	11
Size:	45.5 KB
ID:	3484  
 
Old 05-01-2010, 04:42 PM   #112
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hi pixellany,

I have come across some information that someone could use the b43 driver with the type of NIC that kamon has but that it resulted in slow transfer speed for some processes, so I didn't choose to go that way. I had the same problem with the same type of card on another laptop and only got it to work properly with ndiswrapper. Or should we advice OP to switch to Fedora?

Kind regards,

Eric
 
Old 05-01-2010, 04:45 PM   #113
kamon
Member
 
Registered: Apr 2010
Location: Manchester
Distribution: Ubuntu
Posts: 87

Original Poster
Rep: Reputation: 15
Sorry I'm just tired now, yes the laptop came with windows vista. I'm half way through that last thing you told me to do
 
Old 05-01-2010, 04:49 PM   #114
kamon
Member
 
Registered: Apr 2010
Location: Manchester
Distribution: Ubuntu
Posts: 87

Original Poster
Rep: Reputation: 15
I think it was successful
 
Old 05-01-2010, 04:52 PM   #115
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hello,

Fantastic! If you want to we can continue tomorrow, since you're tired and I could use some sleep too. If nobody else picks up where I leave of, then you'll see me back here after breakfast.

Kind regards,

Eric
 
Old 05-01-2010, 04:56 PM   #116
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Quote:
Originally Posted by EricTRA View Post
Hi pixellany,

I have come across some information that someone could use the b43 driver with the type of NIC that kamon has but that it resulted in slow transfer speed for some processes, so I didn't choose to go that way. I had the same problem with the same type of card on another laptop and only got it to work properly with ndiswrapper. Or should we advice OP to switch to Fedora?

Kind regards,

Eric
NO--I just was reporting a data point. I would advise kamon to stay with what you are doing.
 
Old 05-01-2010, 04:57 PM   #117
kamon
Member
 
Registered: Apr 2010
Location: Manchester
Distribution: Ubuntu
Posts: 87

Original Poster
Rep: Reputation: 15
Yeah I kinda need to move, the room with the ethernet cable (i am learning ) has wooden flooring and i've been lay here for hours! I'll speak to you tomorrow then
Thanks,
Kate.
 
Old 05-01-2010, 04:59 PM   #118
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Ouch, I can only imagine how much that hurts sitting here in my leather executive chair

Have a good night Kate, talk to you tomorrow.

Kind regards,

Eric
 
Old 05-02-2010, 07:18 AM   #119
kamon
Member
 
Registered: Apr 2010
Location: Manchester
Distribution: Ubuntu
Posts: 87

Original Poster
Rep: Reputation: 15
Anyone online?
 
Old 05-02-2010, 07:24 AM   #120
EricTRA
LQ Guru
 
Registered: May 2009
Location: Gibraltar, Gibraltar
Distribution: Fedora 20 with Awesome WM
Posts: 6,805
Blog Entries: 1

Rep: Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297Reputation: 1297
Hello Kate, good afternoon.

How are you? Well rested and ready for the next round?

Kind regards,

Eric
 
  


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
Confused about Linux tamer79 Linux - Newbie 12 08-15-2008 01:51 PM
confused between linux and NT uraauroow Linux - Server 1 01-17-2008 05:43 PM
Confused with Linux nhc Linux - Newbie 11 12-04-2007 11:36 PM
Confused In Linux Distros SHADAB1RIZVI Linux - Newbie 7 09-21-2007 08:22 PM
Confused w/ Linux noxious986 Linux - Newbie 15 06-03-2003 06:10 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions

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