Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 194072

Summary: Network card is not detected - logical mistake
Product: [OLD] Docs on www.gentoo.org Reporter: Patryk Rzadzinski <patryk>
Component: Installation HandbookAssignee: Docs Team <docs-team>
Status: RESOLVED WONTFIX    
Severity: minor    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
URL: http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?part=1&chap=3#doc_chap3
Whiteboard:
Package list:
Runtime testing required: ---

Description Patryk Rzadzinski 2007-09-28 10:44:12 UTC
In the manual network installation there's a passage stating:

"If however you receive the following error, the network card is not detected:"

Then follows an error that the interface doesn't exist. Basically there's nothing to be detected. It is a matter of either the driver for the NIC is loaded or not. 

I suggest adding hints what to do, if the user gets such error message: List currently loaded modules, identify the module that is required for his NIC model and make, eventually instructions how to get the module loaded.


Reproducible: Always
Comment 1 nm (RETIRED) gentoo-dev 2007-09-28 13:16:26 UTC
We already have instructions on how to check for available modules and how to load them immediately prior to that bit:

***
To find out what kernel modules we provide for networking, use ls:

Code Listing 10: Searching for provided modules

# ls /lib/modules/`uname -r`/kernel/drivers/net

If you find a driver for your network card, use modprobe to load the kernel module:

Code Listing 11: Using modprobe to load a kernel module

(As an example, we load the pcnet32 module)
# modprobe pcnet32

To check if your network card is now detected, use ifconfig. A detected network card would result in something like this:
***

I think they are sufficient.