Results 11 to 15 of 15
Your ifconfig output is only showing the lo (loopback) interface.
If your ethernet card was correctly loaded you should have seen an eth0 interface in your ifconfig output.
What is ...
- 05-19-2008 #11
Your ifconfig output is only showing the lo (loopback) interface.
If your ethernet card was correctly loaded you should have seen an eth0 interface in your ifconfig output.
What is the output of:Code:# lspci | grep Network
Men occasionally stumble over the truth,
but most of them pick themselves up
and hurry off as if nothing had happened.
Winston Churchill
... then the Unix-Gods created "man" ...
- 05-19-2008 #12
The /etc/conf.d/net is a configuration file.
You do not run it.
To start the eth0 ethernet interface you use:Code:# /etc/init.d/net.eth0 start
Men occasionally stumble over the truth,
but most of them pick themselves up
and hurry off as if nothing had happened.
Winston Churchill
... then the Unix-Gods created "man" ...
- 05-19-2008 #13Just Joined!
- Join Date
- May 2008
- Posts
- 9
- 05-19-2008 #14
OK, it looks like you skipped a part of the installation ... there is a section in the Installation Handbook that talks about setting up your networking.
There would have been a comment about installing a dhcp client.
You can setup a fixed address ... just to get you communicating.
The /etc/conf.d/net.example file shows all the options ... example to add a static address and a default gateway ... add these lines to the /etc/conf.d/net file:
Code:config_eth0=( "192.168.0.2/24" ) routes_eth0=( "default via 192.168.0.1" )
Men occasionally stumble over the truth,
but most of them pick themselves up
and hurry off as if nothing had happened.
Winston Churchill
... then the Unix-Gods created "man" ...
- 05-20-2008 #15Just Joined!
- Join Date
- May 2008
- Posts
- 9
yeah, i skipped part of the installation, but it was for a reason...
i think i mentioned that the installer wouldn't let me config the network, skipping it was the only way to get the gui to install at all. i think that there is a problem with beta 2's install compiler, though i couldn't tell you what it was, although it did say something about "segmentation fault" while it was supposed to be installing the network components. it did it like 5 times in a row, so i just skipped it, figuring i could make it work later... if your trick works, hopefully i'll be posting from my linux machine.


Reply With Quote

