LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-19-2006, 07:00 PM   #1
moisedo
LQ Newbie
 
Registered: Sep 2006
Posts: 7

Rep: Reputation: 0
Help setting up network adaptor


Ok, I have a DELL E310, i just installed Slackware 10.2 on it, that works perfectly but... the network adapter i dont know what happend... can some body tell me how to configure it, or how to set it up. Thanks
 
Old 09-19-2006, 07:05 PM   #2
bchaynes3
LQ Newbie
 
Registered: Jul 2006
Location: Athens, Georgia USA
Distribution: Knoppix 5.0.1, Ubuntu 6.06,Mandriva 2006.0
Posts: 17

Rep: Reputation: 0
You might first post your computer setup and the type of network adaptor.
 
Old 09-19-2006, 07:23 PM   #3
moisedo
LQ Newbie
 
Registered: Sep 2006
Posts: 7

Original Poster
Rep: Reputation: 0
Hey

Thanks for the Replay, But i wish i could know that information, i am really new to this, im just learning how to use linux and thats the reason i just installed it, but is there another way to install/configure it?
 
Old 09-19-2006, 07:35 PM   #4
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
See the slackware network config page.

Having said that For a Linux newbie I'd recommend Ubuntu over Slackware. It's mostly because I've not used slackware though. I'm sure there's a slackware-o-phile who can guide you. Anyone?
 
Old 09-19-2006, 07:38 PM   #5
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
To find out what network hardware you have, try running this command from a terminal window:

Code:
lspci |grep -i net
Post the results here.
 
Old 09-19-2006, 07:41 PM   #6
moisedo
LQ Newbie
 
Registered: Sep 2006
Posts: 7

Original Poster
Rep: Reputation: 0
Ok

Ok, i tried to follow those instructions and it seems that they r useless, can it be configured in the KDE?????
 
Old 09-19-2006, 07:44 PM   #7
moisedo
LQ Newbie
 
Registered: Sep 2006
Posts: 7

Original Poster
Rep: Reputation: 0
HEre is the information req.

03:08.0 Ethernet Controller: Intel Corporation 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controler (rev 04)

btw: Thanks for the Help guys!
 
Old 09-19-2006, 07:48 PM   #8
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
Is there another line of output?
 
Old 09-19-2006, 07:52 PM   #9
moisedo
LQ Newbie
 
Registered: Sep 2006
Posts: 7

Original Poster
Rep: Reputation: 0
No, Thats everything.
 
Old 09-19-2006, 08:18 PM   #10
moisedo
LQ Newbie
 
Registered: Sep 2006
Posts: 7

Original Poster
Rep: Reputation: 0
anybody else around? who can help me?
 
Old 09-19-2006, 10:14 PM   #11
Valdis Grinbergs
Member
 
Registered: Dec 2005
Distribution: Debian
Posts: 30

Rep: Reputation: 25
moisedo,

When you used lspci | grep -i net
you should have seen one line for the network controller in addition to the line for the ethernet controller, i.e.:
00:09.0 Network controller: Intel Corporation PRO/Wireless 2200BG Network Connection (rev 05)
00:13.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M Gigabit Ethernet (rev 03)

This is a long shot, but you might want to look through
lspci | less
to make sure there is no network controller there missed by the grep filter.

If it is still not there, it appears slackware does not recognize your network controller. If you know what type it is, you should look on the web for documentation about using it with linux.

Also, you could try a different distro that is better at hardware detection. The simplest thing to do would be to try a live cd, like knoppix, to see if it has better luck recognizing your network controller. That way, you could at least see the name of the network controller in lspci. Then you could figure out how to use it with slackware.

Good luck!!!
 
Old 09-19-2006, 11:11 PM   #12
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: Custom Debian Live ISO's
Posts: 1,291

Rep: Reputation: 62
You could try running the network card configuration utility again from the command line, just type:

Code:
netconfig
And follow the prompts. If that doesn't work you could try to do it manually,if you want to grab an ipaddress from a DHCP server you can edit your /etc/rc.d/rc.inet1.conf file, look for this:

Code:
# Config information for eth0:
IPADDR[0]=""
NETMASK[0]=""
USE_DHCP[0]=""
DHCP_HOSTNAME[0]=""
And change to this:

Code:
# Config information for eth0:
IPADDR[0]=""
NETMASK[0]=""
USE_DHCP[0]="yes"
DHCP_HOSTNAME[0]=""
And to restart your network card, just type:

Code:
/etc/rc.d/rc.inet1 restart
You should now get your ipaddress automatically from the DHCP server.

Last edited by fotoguy; 09-20-2006 at 05:55 AM.
 
Old 09-20-2006, 12:00 AM   #13
zetabill
Member
 
Registered: Oct 2005
Location: Rhode Island, USA
Distribution: Slackware, Xubuntu
Posts: 348

Rep: Reputation: 32
Quote:
Originally Posted by Valdis Grinbergs
When you used lspci | grep -i net
you should have seen one line for the network controller in addition to the line for the ethernet controller, i.e.:
00:09.0 Network controller: Intel Corporation PRO/Wireless 2200BG Network Connection (rev 05)
00:13.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M Gigabit Ethernet (rev 03)
Not necessarily. I'm not sure s/he's trying to configure a wireless interface. To my knowledge the E310 is a Dimension Desktop so unless it was added I'm not sure it would have a wireless interface. In which case the one Intel Ethernet controller that moisedo said was there should be functional and have an interface.

Moisedo, just verify that it is an ethernet you're trying to set up and not a wireless. If ethernet is the case, then - as fotoguy posted - run the netconfig command as root to set it up. You have the option in netconfig to set up DHCP or a Static IP.

Good luck and post back if you're successful.

EDIT: I just saw your other post, moisedo and the piece of information there that would have been better here was that you're doing this through DHCP. The netconfig command should do you well. Refer to fotoguy's post.

This will help you be a good Slacker:
http://www.slackbook.org/html/index.html

Last edited by zetabill; 09-20-2006 at 12:12 AM.
 
Old 09-20-2006, 09:39 AM   #14
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
I've edited the thread title so that it reflects the problem.
 
  


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
Intel 3945 Wireless adaptor - setting Monitor mode? fintan.moloney Linux - Wireless Networking 3 07-19-2006 02:40 AM
which network adaptor? AVD_ZM Linux - Wireless Networking 2 12-21-2004 05:45 AM
wireless network adaptor rohan208 Linux - Wireless Networking 3 06-15-2004 10:42 PM
WUSB11 Network Adaptor Help idolcrash Linux - Networking 1 03-06-2004 09:13 AM
NVIDIA Network Adaptor GreenCare Linux - Networking 6 12-19-2002 07:02 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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