On the live dvd, open a terminal, and as root:
- Code: Select all
lspci -k
you'll see a list of your hardware, with their drivers and modules it uses.
now, you have to find your Ethernet Controller. it looks like this:
- Code: Select all
03:00.0 Ethernet controller: Atheros Communications Inc. AR8152 v2.0 Fast Ethernet (rev c1)
Subsystem: Micro-Star International Co., Ltd. Device 7680
Kernel driver in use: atl1c
Kernel modules: atl1c
In the above example i have a Atheros Ethernet card, and uses the module
atl1cExit the live dvd and start your main System.
Open a terminal, and as root:
- Code: Select all
modprobe atl1c
replace "atl1c" with the modulename that came up on your output.
next, enter:
- Code: Select all
net-setup eth0
to configure the card.
(it should display interfacename: eth0, mac-address, and driver)
Then,
- Code: Select all
nano -w /etc/conf.d/modules
and enter:
- Code: Select all
modules="atl1c"
to make it autoloaded during startup.
replace atl1c with the modulename that came up on your output.
save and close the editor. ( (ctrl-o) (ctrl-x) )
Restart the system to check if Ethernet is enabled.