LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 12-05-2014, 10:53 AM   #1
haziz
Member
 
Registered: Jan 2012
Location: /dev/null
Distribution: Slackware, Fedora, Debian, Arch, Ubuntu
Posts: 101

Rep: Reputation: 4
Slackware Not Recognizing Wifi in a Dell Inspiron i3646


I installed Slackware 14.1 on a Dell Inspiron i3646. Everything works except for the built in wifi. ifconfig shows the built in wired network card (and the loopback network of course) but reports no Wireless card. Network manager from within KDE also has trouble finding the wireless card. Problem is I am also uncertain as to who makes the chipset behind the wifi card and no amount of googling has led me to a clear answer.

Any suggestions or solutions?

Thanks.

Last edited by haziz; 12-05-2014 at 10:55 AM.
 
Old 12-05-2014, 10:58 AM   #2
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
lspci should be able to provide some insight on the wireless card. From there, it might require additional firmware to be able to work properly. If you can't figure it out from the output, paste it here and we'll see what we can do to help you get this working
 
Old 12-05-2014, 05:25 PM   #3
haziz
Member
 
Registered: Jan 2012
Location: /dev/null
Distribution: Slackware, Fedora, Debian, Arch, Ubuntu
Posts: 101

Original Poster
Rep: Reputation: 4
Quote:
Originally Posted by bassmadrigal View Post
lspci should be able to provide some insight on the wireless card. From there, it might require additional firmware to be able to work properly. If you can't figure it out from the output, paste it here and we'll see what we can do to help you get this working
Thanks. Looks like it is an Atheros AR9565 chipset. Here is the relevant lspci output:

Code:
02:00.0 Network controller: Atheros Communications Inc. AR9565 Wireless Network Adapter (rev 01)
Any suggestions? I am currently googling for this chipset on Slackware (as well as other distros, for inspiration).
 
Old 12-05-2014, 08:16 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,310
Blog Entries: 28

Rep: Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137Reputation: 6137
This might help: http://wireless.kernel.org/en/users/Drivers/ath9k
 
Old 12-05-2014, 09:59 PM   #5
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,367

Rep: Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748
As frankbell points out, your device should be supported by the ath9k kernel module.
Is the driver being loaded? Check with '/sbin/lspci -k | grep "02:00.0" -A 3'

If not, do the product and vendor IDs of your device ( found in the output of '/sbin/lspci -kn | grep "02:00.0" ' ) appear in the output of '/sbin/modinfo ath9k' ?
i.e. Any output from this command?
/sbin/modinfo ath9k | grep -i $(/sbin/lspci -kn | grep "02:00.0" | cut -d " " -f3 | sed 's/:/.*/')
 
1 members found this post helpful.
Old 12-06-2014, 07:26 AM   #6
haziz
Member
 
Registered: Jan 2012
Location: /dev/null
Distribution: Slackware, Fedora, Debian, Arch, Ubuntu
Posts: 101

Original Poster
Rep: Reputation: 4
Quote:
Originally Posted by allend View Post
As frankbell points out, your device should be supported by the ath9k kernel module.
Is the driver being loaded? Check with '/sbin/lspci -k | grep "02:00.0" -A 3'

If not, do the product and vendor IDs of your device ( found in the output of '/sbin/lspci -kn | grep "02:00.0" ' ) appear in the output of '/sbin/modinfo ath9k' ?
i.e. Any output from this command?
/sbin/modinfo ath9k | grep -i $(/sbin/lspci -kn | grep "02:00.0" | cut -d " " -f3 | sed 's/:/.*/')


Looks like yes the kernel module for the network controller (ath9k) is in fact being loaded (based on the output from "/sbin/lspci -k | grep "02:00.0" -A 3").
 
Old 12-06-2014, 10:25 AM   #7
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,367

Rep: Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748Reputation: 2748
Good! I was concerned that your device may not have been recognized by the kernel. Slackware 14.1 has the 3.10.17 kernel and support for your device appeared in the 3.10 series.
How are you trying to configure networking?
Quote:
Network manager from within KDE also has trouble finding the wireless card.
If you are using NetworkManager then you will need the NetworkManager daemon running. Is /etc/rc.d/rc.networkmanager an executable script? If using NetworkManager, then a clean /etc/rc.d/rc.inet1.conf should be used. http://www.linuxquestions.org/questi...9/#post5236776
Quote:
ifconfig shows the built in wired network card (and the loopback network of course) but reports no Wireless card
If you are using the traditional network configuration, perhaps this will help. http://docs.slackware.com/slackware:...e_your_network
 
1 members found this post helpful.
Old 12-06-2014, 12:07 PM   #8
haziz
Member
 
Registered: Jan 2012
Location: /dev/null
Distribution: Slackware, Fedora, Debian, Arch, Ubuntu
Posts: 101

Original Poster
Rep: Reputation: 4
Quote:
Originally Posted by allend View Post
...................
How are you trying to configure networking?

If you are using NetworkManager then you will need the NetworkManager daemon running. Is /etc/rc.d/rc.networkmanager an executable script? If using NetworkManager, then a clean /etc/rc.d/rc.inet1.conf should be used. http://www.linuxquestions.org/questi...9/#post5236776
..............
[/url]
Thanks! That did it. Starting the network manager daemon on bootup by making it's script executable did the trick. I know Patrick is pretty old school, which is one of the reasons I am attracted to Slackware in the first place, but he really should consider starting a wifi networking daemon by default. People running Slackware as a server can then turn it off rather than the reverse. Most users nowadays, myself included, expect their computers and laptops, including wifi, to work out of the box. Is there a wifi configuration daemon that starts by default on Slackware as of 14.1?

I am replying with this message from that Dell PC (actually a laptop motherboard that Dell shoves into a cheap desktop enclosure). BTW how do you get LinuxQuestions to recognize that I am using Slackware, it still shows a generic Linux icon in my case.

Thanks again!

Last edited by haziz; 12-06-2014 at 12:12 PM.
 
Old 12-06-2014, 01:02 PM   #9
qweasd
Member
 
Registered: May 2010
Posts: 621

Rep: Reputation: Disabled
Quote:
Originally Posted by haziz View Post
consider starting a wifi networking daemon by default.
It is an installer option, you may have just missed it.
 
Old 12-06-2014, 05:07 PM   #10
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by haziz View Post
I am replying with this message from that Dell PC (actually a laptop motherboard that Dell shoves into a cheap desktop enclosure). BTW how do you get LinuxQuestions to recognize that I am using Slackware, it still shows a generic Linux icon in my case.
See this thread... there's a couple of different options, but the best is to probably get a User-agent switcher extension for your browser where you can change it for only certain sites (to prevent breakage for sites that don't recognize Slackware).

http://www.linuxquestions.org/questi...go-4175499401/
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
[SOLVED] what happened to http://www.slackware.org/ ?! solarfields Slackware 20 09-28-2011 03:49 AM
[SOLVED] slackware not recognizing wifi switch being turned on tacticalbread Slackware 4 02-27-2011 12:44 AM
http://www.slackware.com/book/ Whitehat General 9 08-11-2005 05:46 PM
Slackware book purchase vs. URL: http://www.slackware.org/book/ jtp51 Slackware 5 11-28-2004 04:30 PM

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

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