Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 194072 - Network card is not detected - logical mistake
Summary: Network card is not detected - logical mistake
Status: RESOLVED WONTFIX
Alias: None
Product: [OLD] Docs on www.gentoo.org
Classification: Unclassified
Component: Installation Handbook (show other bugs)
Hardware: All Linux
: High minor (vote)
Assignee: Docs Team
URL: http://www.gentoo.org/doc/en/handbook...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-09-28 10:44 UTC by Patryk Rzadzinski
Modified: 2007-09-28 13:16 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.