LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-23-2009, 04:09 PM   #1
vision1
LQ Newbie
 
Registered: Dec 2009
Posts: 4

Rep: Reputation: 0
Question New to Linux; how do i install the netgear wireless adapter driver


Greetings,

Long time Windows user here; limited line command experience from early computer learning; Just wiped my drive and installed Ubuntu. How do I install a driver for the netgear wireless adapter - it was already installed in the machine. I've downloaded the driver believed to work. What next? Also, any instruction on educating myself on Linux/Ubuntu basics? Thanks in advance!
 
Old 12-23-2009, 04:27 PM   #2
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by vision1 View Post
Greetings,

Long time Windows user here; limited line command experience from early computer learning;
You'll start getting more experience :-)

Quote:
How do I install a driver for the netgear wireless adapter - it was already installed in the machine. I've downloaded the driver believed to work.
Usually most of the drivers you need will come with your distribution and you shouldn't need to manually download them. Indeed the manual downloading an installation of drivers that many windows users seem to want to do is more often than no the wrong approach with most linux distributions.

So, the fist thing we need to do is find out what this wireless adaptor actually is. A "netgear wireless adapter" could possibly be any number of things. That can be done on the command line with the following command
Code:
lspci | grep -E 'Ether|Net'
Please cut and paste the output of this into your next post.

The lspci command lists hardware on your machine and "grep -E 'Ether|Wireless'" just selects the lines we are interested in. With this information we can workout what driver should be used.


Quote:
What next? Also, any instruction on educating myself on Linux/Ubuntu basics? Thanks in advance!
Many find http://rute.2038bug.com/ to be a good introduction to linux.

Cheers,

Evo2.
 
Old 12-23-2009, 05:30 PM   #3
vision1
LQ Newbie
 
Registered: Dec 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by vision1 View Post
Greetings,

Long time Windows user here; limited line command experience from early computer learning; Just wiped my drive and installed Ubuntu. How do I install a driver for the netgear wireless adapter - it was already installed in the machine. I've downloaded the driver believed to work. What next? Also, any instruction on educating myself on Linux/Ubuntu basics? Thanks in advance!
Here's my controller as instructed. Thanks for the info by the way!

02:07.0 Ethernet controller: Atheros Communications Inc. Atheros AR5001X+ Wireless Network Adapter (rev 01)
02:0c.0 Ethernet controller: Intel Corporation 82557/8/9/0/1 Ethernet Pro 100 (rev 10)
 
Old 12-23-2009, 05:39 PM   #4
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
I think that chip uses the ath9k driver which should be in your kernel if the version is 2.6.28 or newer

Please try the following command to ensure the driver is loaded in the kernel:

Code:
sudo modprobe ath9k
And then please run the following two commands and post the output
Code:
/sbin/ifconfig -a
/sbin/iwconfig
Evo2.
 
Old 12-23-2009, 05:41 PM   #5
elsheepo
Member
 
Registered: Feb 2008
Location: Texas
Distribution: Slackware
Posts: 90

Rep: Reputation: 20
Start off by getting rid of Ubuntu, download slackware, install it, then install the drivers for your card.
http://slackware.com/getslack/
http://slackbuilds.org/result/?search=Atheros&sv=13.0

IF you follow my advice, I will guide you young LinuxWalker.
All the way down the rabbit hole into slack, where you will truly find yourself.
 
0 members found this post helpful.
Old 12-23-2009, 09:47 PM   #6
vision1
LQ Newbie
 
Registered: Dec 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by elsheepo View Post
Start off by getting rid of Ubuntu, download slackware, install it, then install the drivers for your card.
http://slackware.com/getslack/
http://slackbuilds.org/result/?search=Atheros&sv=13.0

IF you follow my advice, I will guide you young LinuxWalker.
All the way down the rabbit hole into slack, where you will truly find yourself.
I appreciate the input and help! At this stage of the game, my work time is a bit too demanding to engage formally in the learning curve needed for proper slackware training. But........I will begin the process. Need a bit of a GUI to aid my processes on the short term. Can't sink too far too quickly.... I have another machine that is sitting idle at the moment. It is a perfect candidate for that adventure.
 
Old 12-23-2009, 09:58 PM   #7
vision1
LQ Newbie
 
Registered: Dec 2009
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by evo2 View Post
I think that chip uses the ath9k driver which should be in your kernel if the version is 2.6.28 or newer

Please try the following command to ensure the driver is loaded in the kernel:

Code:
sudo modprobe ath9k
And then please run the following two commands and post the output
Code:
/sbin/ifconfig -a
/sbin/iwconfig
Evo2.
Greetings: Keyed in the first sudo as instructed, it returned a request for my password, but then zero output; just went back to the terminal point with empty space after the colon. The second instruction returned a wealth of information before i could even hit enter? Would completely fill up the quote/reply screen and then a small bit on down. Not sure what all that was about, but going to have to turn in. I'll do some research and try it again tomorrow or Friday. Thanks for the instruction and direction.
 
Old 12-23-2009, 10:08 PM   #8
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by vision1 View Post
Greetings: Keyed in the first sudo as instructed, it returned a request for my password, but then zero output; just went back to the terminal point with empty space after the colon
That's good, no errors. That means that you have the driver.

Quote:
The second instruction returned a wealth of information before i could even hit enter? Would completely fill up the quote/reply screen and then a small bit on down. Not sure what all that was about, but going to have to turn in. I'll do some research and try it again tomorrow or Friday.
The second two commands provided information about your system sees your network devices: they are important to show that the device really is recongnized correctly.

Evo2.
 
Old 12-24-2009, 11:13 AM   #9
elsheepo
Member
 
Registered: Feb 2008
Location: Texas
Distribution: Slackware
Posts: 90

Rep: Reputation: 20
Nonsense dear friend! Slackware 13.0 is fully loaded with the latest and greatest GUI's available. I assure you, Slackware is the easiest OS to familiarize yourself with. Your wifi would have been done last night had you listened. :P
 
Old 12-24-2009, 11:49 AM   #10
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Quote:
Originally Posted by elsheepo View Post
Nonsense dear friend! Slackware 13.0 is fully loaded with the latest and greatest GUI's available. I assure you, Slackware is the easiest OS to familiarize yourself with. Your wifi would have been done last night had you listened. :P
If you really must behave like a total dick, would you mind doing it elsewhere?

Evo2.
 
Old 12-24-2009, 11:53 AM   #11
elsheepo
Member
 
Registered: Feb 2008
Location: Texas
Distribution: Slackware
Posts: 90

Rep: Reputation: 20
ok fine....

try this dude,

sudo ifconfig wlan0 up

seeing is you have the ath9k module installed, that SHOULD get ur card working.
Seeing is no one else here can give you a straight answer there is it.

Last edited by elsheepo; 12-24-2009 at 11:54 AM.
 
Old 12-24-2009, 12:04 PM   #12
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
elsheepo, ok, I typed and hit "post" a little to hastily: I apologize.

The OP has been off line for the past 15 hours. I'm waiting to see what the output of ifconfig and iwconfig are. Until he reports back, there is not much point telling him to try to bring up the interface, or dangle other random distros in front of him.

Evo2.

Last edited by evo2; 12-24-2009 at 12:04 PM. Reason: typo
 
Old 12-24-2009, 12:08 PM   #13
minrich
Member
 
Registered: Aug 2003
Location: Isles of Man & Wight
Distribution: See signature
Posts: 548

Rep: Reputation: 40
evo2 - have just sent a visitor message to your profile - please erase when read. thanks
 
Old 12-24-2009, 12:09 PM   #14
elsheepo
Member
 
Registered: Feb 2008
Location: Texas
Distribution: Slackware
Posts: 90

Rep: Reputation: 20
Evo2 if he has the correct module dynamically loaded into his kernel, and the card is shown in his lspci output, there's nothing else to do than bring the interface up.
 
Old 12-24-2009, 12:10 PM   #15
elsheepo
Member
 
Registered: Feb 2008
Location: Texas
Distribution: Slackware
Posts: 90

Rep: Reputation: 20
a quick google search gave me this..
http://www.wireless-driver.com/downl...nd-Chipset.htm
perhaps he wants the madwifi driver for his specific card.

Last edited by elsheepo; 12-24-2009 at 12:21 PM.
 
  


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
how to install netgear WG111 usb 2.0 wireless adapter in fedora 8..? lovingsanth Linux - Newbie 5 11-09-2008 12:18 AM
how to install netgear WG111 usb 2.0 wireless adapter in fedora 8. .? lovingsanth Linux - Wireless Networking 11 03-12-2008 06:40 AM
Netgear wireless adapter- install driver, configure manually, or both? sonichedgehog Linux - Networking 2 03-11-2008 03:40 AM
Where's driver for Netgear HA501 wireless adapter? d2army Linux - Wireless Networking 9 09-07-2004 03:53 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:10 AM.

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