You are not logged in.
Pages: 1
After the reboot in install my internet isn't working, so I decide to go and look through my config files again. So I type after I log in as root:
sudo nano /ect/rc.conf and it can't find it (new file button).
So I try to do some digging with the ls -r command so first I type:
sudo cd /ect
And it sends a message saying that the path cannot be found.
Help?
Offline
Hint:
It should be:
/etc/rc.conf
NOT
/ect/rc.conf
Have some more coffee
Last edited by Skripka (2009-07-27 22:55:59)
Offline
Wow, I didn't notice that, however, I now need help finding out what is wrong with my config's network settings.
rc.conf has in the networking section:
HOSTNAME="neo"
eth="dhcp"
INTERFACES=(eth0)
gateway="default gw 192.168.1.254"
ROUTES=(!gateway)
And for /etc/hosts:
127.0.0.1 localhost.localdomain localhost neo
Offline
Wow, I didn't notice that, however, I now need help finding out what is wrong with my config's network settings.
rc.conf has in the networking section:HOSTNAME="neo" eth="dhcp" INTERFACES=(eth0) gateway="default gw 192.168.1.254" ROUTES=(!gateway)
Did you intend to have the second line read:
eth="dhcp"
?
The default should read:
eth0="dhcp"
Also is your wireless adapter located at eth0? If not remember that all network interfaces should be specified in the following line:
INTERFACES=()
Last edited by Skripka (2009-07-28 00:25:57)
Offline
I'm running through a mobo lan port. Does this make a difference?
Oh and yes that was a typo, it's eth0="dhcp".
EDIT:
This is in virtualbox if that makes a difference.
Last edited by cryticfarm (2009-07-28 00:42:44)
Offline
I'm running through a mobo lan port. Does this make a difference?
Oh and yes that was a typo, it's eth0="dhcp".
That should be eth0.
EDIT:
This is in virtualbox if that makes a difference.
It does actually, Arch runs poorly VM'd from what I hear.
Offline
cryticfarm wrote:I'm running through a mobo lan port. Does this make a difference?
Oh and yes that was a typo, it's eth0="dhcp".That should be eth0.
It is...
Offline
cryticfarm wrote:I'm running through a mobo lan port. Does this make a difference?
Oh and yes that was a typo, it's eth0="dhcp".That should be eth0.
wrote:EDIT:
This is in virtualbox if that makes a difference.It does actually, Arch runs poorly VM'd from what I hear.
I can confirm that it USED to. I just started using Arch again in a VM (with hardware virtualisation) and it runs fast.
The last time I tried it I didn't have hardware virtualisation enabled but I don't know if that is what made such a huge difference or not. I'm willing to bet it was a kernel issue.
Offline
Skripka wrote:cryticfarm wrote:I'm running through a mobo lan port. Does this make a difference?
Oh and yes that was a typo, it's eth0="dhcp".That should be eth0.
wrote:EDIT:
This is in virtualbox if that makes a difference.It does actually, Arch runs poorly VM'd from what I hear.
I can confirm that it USED to. I just started using Arch again in a VM (with hardware virtualisation) and it runs fast.
The last time I tried it I didn't have hardware virtualisation enabled but I don't know if that is what made such a huge difference or not. I'm willing to bet it was a kernel issue.
Can you help me on my network config seeing that you were able to run it on a VM?
Offline
Can you post your complete rc.conf contents? You'll need to be adding the 'network' daemon to the DAEMONS array if not already present. For more information, see these links:
http://wiki.archlinux.org/index.php/Network
http://wiki.archlinux.org/index.php/VirtualBox (even if you're not using VirtualBox)
thayer williams ~ cinderwick.ca
Offline
Is there an easier way to post the contents of my rc.conf then typing it up manually?
Offline
VirtualBox is set to NAT
rc.conf:
eth0="dhcp"
INTERFACES(eth0)
Couldn't be simpler
Offline
So I delete everything else in the network section of rc.conf except those 2 lines?
Offline
Pages: 1