Raj Swaminathan wrote:
> Hi,
> 
> Im a gnu/linux newbie and have 2 problems ....
> 
> 1. At boot, i get "net-mount failed on eth0" and ifconfig does not
> list eth0. So i manually tried "ifconfig eth0 up" and eth0 is then
> listed.  Next I am unable to ping machines not listed on /etc/hosts.
> 
> My /etc/conf.d/net has entries for config_eth0 and routes_eth0
> 
> My /etc/resolv.conf however looks like this:
> # Generated by dhcpcd for interface eth1
> nameserver  <mynameserver>
> domain         <mydomain>
> It seems to say eth1 ..... when it should say eth0?
> 
> 2. When grub loads, the screen is all blurred and hazy and seems to
> get allright 10 seconds after the kernel starts loading. What should i
> do?
> 
> Any help will be appreciated .... thanks !
> raj

It seems to me that you don't have the network start script(s) activated.
Try executing:
rc-update add net.eth0 default
You should replace "eth0" with the name of your link.


The gentoo way to:

- start a service is:
 "/etc/init.d/<service-name> start"
For example: /etc/init.d/net.eth0 start

- stop a service is:
 "/etc/init.d/<service-name> stop"
For example: /etc/init.d/net.eth0 stop

- make a service auto-start during boot is:
 "rc-update add <service-name> <run-level>"
For example: rc-update add net.eth0 default

- prevent a service from auto-starting during boot is:
 "rc-update del <service-name>"
For example: rc-update del net.eth0 default


-- 
Best regards,
Daniel

-- 
gentoo-user@gentoo.org mailing list

Reply via email to