You are not logged in.
Pages: 1
I have been using ubuntu for a while, and recently got a hold of an older PC. Deciding Ubuntu was too resource intensive, and always being interested in Arch, I decided to install it, since I had nothing to lose. I installed Arch, but can not configure the network. I threw an old ethernet card into it, and the link light is on. I have comcast, and it's hooked up through a router. Everything else, including my laptop and xbox, are connecting fine. I tried a few things from the arch linux beginner's guide, and the official arch linux install guide. Can anyone help me set up the ethernet card so I have internet, I would really like to get this working.
Thanks
Rob
Offline
Post your rc.conf file
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
When I type /etc/rc.conf, it tells me permission is denied. I really feel like a newbie, but how do I give myself permission?
Offline
Type "cat /etc/rc.conf" instead. That should work as a regular user. We don't need to see the whole file, just the network related stuff. Look for the following lines: MODULES=(...), eth0=..., INTERFACES=(...), gateway=..., ROUTES=(...) and DAEMONS=(...).
Other bits of info would also be helpful. Check for error messages in /var/log/everything.log (you will have to be root to see that one). Include the output of the command "lspci -v" so we know what hardware you have.
Offline
HOSTNAME= "myhost"
lo="lo 127.0.0.1"
eth0="dhcp
INTERFACES=(lo eth0)
gateway
ROUTES=(!gateway)
That's all the stuff under networking in /etc/rc.conf
Last edited by Specter11b (2008-02-16 13:03:52)
Offline
lspc -v for ethernet controller is
Accton Technology Corporation SMC2-1211TX (rev 10)
Subsystem: Accon Technology Corporation EN-1207D Fast Ethernet Adapter
Flags: bus master, medium devsel, latency 64, IRQ 9
I/O ports at d800 [size=256]
Memory at ffcffc00 (32-bit, non-prefetchable) [size=256]
Capabilities: [50] Power Management version 1
Offline
Hi there,
After a little googling, my suggestion would be to check your /etc/rc.conf and see if the 8139too module is in the MODULES=( ) section. Sometimes you have to add them manually for some reason.
Time is a great teacher, but unfortunately it kills all its pupils ... - Louis Hector Berlioz
Offline
8139too is there. I don't know if this helps, but when I try ping -c www.google.com, I get the message 'bad number of packets to transmit.'
Offline
Hi there,
Apparently your ping command doesn't really mean much as I just tried that out with my working wireless network and I get the same message.
I'm definitely not an expert at using the ping command but when I just type in "ping www.google.com" it keeps on pinging until I hit ctrl+c to exit. Very inelegant but it worked.
Just for the heck of it try ifconfig and post any output.
Last edited by bgc1954 (2008-02-17 16:37:26)
Time is a great teacher, but unfortunately it kills all its pupils ... - Louis Hector Berlioz
Offline
As bgc said, ping www.google.com is proper usage. Or to use -c (which is count, not continuous) it's:
ping -c 3 www.google.com
Offline
Well, I tried resetting the router and modem, and it''s all working. Thanks for the help, and sorry on the typo with the ping command.
Offline
Pages: 1