LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
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 07-08-2013, 08:45 PM   #1
amenos42
Member
 
Registered: Jun 2013
Location: USA
Distribution: Slackware
Posts: 47

Rep: Reputation: Disabled
Network help: detecting/activating an interface


I'm setting up a Panasonic CF-29 Toughbook with Slackware 14, and so far I've gotten it up and running with XFCE as the desktop environment. However I'm not able to connect to networks yet.

If I go to Applications Menu > Settings > Network Connections the pointer shows an hourglass for a second, then nothing happens.

ifconfig -a returns two eth interfaces, one <UP, BROADCAST, RUNNING, MULTICAST> and one <BROADCAST, MULTICAST>, as well as a lo interface, <UP, LOOPBACK, RUNNING>

The CF-29 should have an Integrated 10/100 Network Card Integrated Wireless LAN.

I presume the solution involves downloading drivers, but I don't know what to do with them.
 
Old 07-08-2013, 08:52 PM   #2
manwichmakesameal
Member
 
Registered: Aug 2006
Distribution: Slackware
Posts: 804

Rep: Reputation: 110Reputation: 110
What is the output of lspci? Have you tried to look up the chipset and see if you need anything special? What is the chipset?
 
1 members found this post helpful.
Old 07-08-2013, 10:00 PM   #3
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
"Engenius EMP-8602+S 802.11a/b/g miniPCI" is the exact card, but it registers as an "Atheros AR5006X Wireless Network Adapter". Took some digging on Google but I found it.

It should be loaded using the ath5k kernel module.

This page should explain some of what you have to do to enable it if it's not enabled by default:

http://wireless.kernel.org/en/users/Drivers/ath5k

If the ath5k module is not present, you will have to reconfigure the kernel, and rebuild the kernel and modules to support ath5k and it's necessary modules and parameters. All details to do so are listed in the aforementioned webpage.
 
Old 07-09-2013, 08:05 AM   #4
amenos42
Member
 
Registered: Jun 2013
Location: USA
Distribution: Slackware
Posts: 47

Original Poster
Rep: Reputation: Disabled
The output of my lspci is here: https://docs.google.com/document/d/1...it?usp=sharing

I'm now looking into ath5k
 
Old 07-09-2013, 08:41 AM   #5
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Quote:
02:01.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)
Apparently that device is supported by the ipw2200 kernel module. Does 'lsmod | grep ipw2200' show output?
 
1 members found this post helpful.
Old 07-09-2013, 05:10 PM   #6
amenos42
Member
 
Registered: Jun 2013
Location: USA
Distribution: Slackware
Posts: 47

Original Poster
Rep: Reputation: Disabled
Yep:

ipw2200 127987 0
libipw 22828 1 ipw2200
lib80211 2889 2 libipw,ipw2200
cfg80211 144760 2 libipw,ipw2200

I have zero idea what this means.
 
Old 07-09-2013, 06:57 PM   #7
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,383

Rep: Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762Reputation: 2762
Good, it means your device is being recognised and the appropriate kernel module and dependencies are being loaded.

Do you have the NetworkManager daemon running? Has /etc/rc.d/rc.networkmanager been set as an executable file so that the NetworkManager daemon is started at boot?
 
1 members found this post helpful.
Old 07-10-2013, 12:21 PM   #8
amenos42
Member
 
Registered: Jun 2013
Location: USA
Distribution: Slackware
Posts: 47

Original Poster
Rep: Reputation: Disabled
I guess what you're saying is that there's some startup process which points to rc.networkmanager and will execute it if that's possible?

"file .../rc.networkmanager" returns: "./rc.networkmanager: POSIX shell script, ASCII text executable"

stat says the permissions are (0644/-rw-r--r--) and it is a "regular file"

ls says it is owned by root and of group root

SO I guess the proper solution is "chmod u+x /etc/rc.d/rc.networkmanager" right? Or does it need to be a+x?
 
Old 07-10-2013, 01:03 PM   #9
dbfontes
LQ Newbie
 
Registered: Oct 2012
Location: SP, Brazil
Distribution: slackware64-current
Posts: 22

Rep: Reputation: Disabled
Do the following:

/etc/rc.d/rc.inet1 stop
chmod -x /etc/rc.d/rc.inet1

chmod +x /etc/rc.d/rc.networkmanager
/etc/rc.d/rc.networkmanager start
 
1 members found this post helpful.
Old 07-10-2013, 01:57 PM   #10
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,548

Rep: Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557
Quote:
Originally Posted by dbfontes View Post
Do the following:

/etc/rc.d/rc.inet1 stop
chmod -x /etc/rc.d/rc.inet1

chmod +x /etc/rc.d/rc.networkmanager
/etc/rc.d/rc.networkmanager start
There's no reason to make rc.inet1 non-executable. Just don't configure any interfaces in rc.inet1.conf.
 
1 members found this post helpful.
Old 07-10-2013, 02:29 PM   #11
rkfb
Member
 
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 -current running i3
Posts: 494

Rep: Reputation: 174Reputation: 174
Is there a hardware switch for the wireless interface? Maybe it's turned off?
 
Old 07-10-2013, 05:02 PM   #12
amenos42
Member
 
Registered: Jun 2013
Location: USA
Distribution: Slackware
Posts: 47

Original Poster
Rep: Reputation: Disabled
Well, that did it! I'm now posting to this forum from a Linux machine for the first time.

Thank you all so much. This is really an incredibly helpful community.
 
  


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
Activating a virtual network interface bolek Programming 1 02-06-2008 09:50 PM
Activating a virtual network interface bolek Linux - Networking 1 02-05-2008 11:12 AM
activating a network interface marri Programming 2 11-10-2004 10:47 PM
why is network interface activating automatically? ashlock Linux - Networking 4 04-29-2004 12:29 PM
Activating network interface at bootup B1TW1SE Linux - Networking 4 08-22-2003 04:40 AM

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

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