I just installed gentoo 2005 but when i boot, it gives me this error message:
SIOCSIFNETMASK: No such device
*ERROR: Problem starting needed services.
* "netmount" was not started.
What is wrong?
Printable View
I just installed gentoo 2005 but when i boot, it gives me this error message:
SIOCSIFNETMASK: No such device
*ERROR: Problem starting needed services.
* "netmount" was not started.
What is wrong?
Netmount don't start if there's some problem with the network... if you use DHCP, you must have installed dhcpcd, edited /etc/conf.d/net to be like this:And most importent of all, remember to compile the kernel-driver for your network-card, preferrably compile it into the kernel (not like a module)Code:iface_eth0="dhcp"
dhcpcd_eth0="-HDN"
I am using static ip, i already tried "dhcp", it dosent work. How do you compile the kernel-driver for your network-card?
Also, when i boot up and get the error mesage, i try to type "ifconfig eth0 up", but it says this: "eth0: unknown interface: No such device". Is it not detecting my ethernet card?
In your case it's not detecting the ethernet-card, I had a lot of issues with that me too... You compile the kernel driver by recompiling the kernel:And then you either copy the kernel over manually, or type "make install" (if the latter one, make sure lilo/grub points to /boot/vmlinuz). How to manually copy over the kernel can be found in the gentoo-documantation. Also remember to save your kernel-configuration after changing it ;). Also notice that you will have to re-run /sbin/lilo after installing a new kernel or changing lilo.conf.Code:cd /usr/src/linux
make menuconfig && make && make modules_install
The ethernet-drivers can be found here:
Device Drivers --> Networking Support --> Ethernet (10 or 100 MBit)
There select your card (assuming you are on 10/100 MBit ethernet, if not go to another section in the "Networking Support" section in the kernel-config.
ok, it did all that, but it still gives me the same error message.
"cant start netmount", eth0: no such device.
I dont know what i did wrong, but it still wont work.
I had a hell of a time with this issue as well. I eventually figured it out; however, it would have gone much smoother had I emerged and used genkernel in order to compile my kernel, this will ensure that your network device will work, as long as it worked without a hitch using the installation cd. Gentoo genkernel also has a manuall configuration just like make menuconfig, so that you can see exactly how genkernel got it to work, and then you can compile your own kernel, which will make bootup much faster as well as kernel compilation in the future.
Hope you figure this out soon :D