LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Wireless will not work. (https://www.linuxquestions.org/questions/linux-newbie-8/wireless-will-not-work-857685/)

JJ45410 01-20-2011 10:28 PM

Wireless will not work.
 
Hi, I've currently switched over to Fedora and I've found wireless wont work.
I can't really get my head around it. I know it's installed.

I ran lspci and saw this,

02:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)

which is good news, but Linux doesn't seem to automatically detect any wireless networks setup. So my question is, what should I do? This is on a laptop and I'd like the ability to be wireless, obviously I'm wired up right now.

yooy 01-21-2011 12:44 AM

i think you should install madwifi driver

3 ways to get wireless working on linux

jdkaye 01-21-2011 12:53 AM

The drivers for AR9285 are already in kernel. You should make sure that ath9k driver is loaded (it may be the ath5k but you can easily check on that). You'll need network manager packages and possibly wicd installed and you're good to go. :)
ciao,
jdk

Sayan Acharjee 01-21-2011 12:56 AM

Quote:

Originally Posted by JJ45410 (Post 4232463)
Hi, I've currently switched over to Fedora and I've found wireless wont work.
I can't really get my head around it. I know it's installed.

I ran lspci and saw this,

02:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)

which is good news, but Linux doesn't seem to automatically detect any wireless networks setup. So my question is, what should I do? This is on a laptop and I'd like the ability to be wireless, obviously I'm wired up right now.

Check these links:
http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
http://www.techotopia.com/index.php/...ess_Networking
http://beginlinux.com/appsm/wireless...wireless-setup

RockDoctor 01-21-2011 07:25 AM

Is NetworkManager running? Does the network manager applet appear in your panel? If NM is running but you don't see the applet, try running the applet program (nm-applet) manually from a terminal window. clicking on the applet should enable you to connect to your wireless network.

schneidz 01-21-2011 03:35 PM

please provide the following info:
Code:

lspci # will tell us the pci devices you have in your system.
lsusb # will tell us the usb devices you have in your system.
ifconfig # will tell us what network interface cards you have on your system.
ifconfig -a
iwconfig # will tell us which of your network interface cards has wireless capability

sudo iwlist <network-card> scan # this will use the <network-card> interface (that from the iwconfig command above) and scan for wireless routers that are accessible.
sudo iwconfig <network-card> essid <your-router-name> # assuming no security (the access point names will be provided by the previous iwlist command).
sudo dhclient # will attempt to get ip-address, subnet mask, dns server information automatically from your router assuming dhcp is turned on on your router.



All times are GMT -5. The time now is 04:44 AM.