I'm trying to setup Archlinux on VMWare Workstation and for some reason I cannot find my ethernet card.
In lspci | grep Ethernet it says
Ethernet controller: Intel Corporation 82574L Gigabit Network Connection
However in ip link it only lists
1: lo <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default
link/loopback 00:00 ... brd 00:00 ...
I know that I should enable the ethernet controller through dhcpcd but it doesn't show within ip link or ifconfig as they only list the loopback device.
Why isn't showing up as eth0 or enoXXXX? And how do I fix this?
lsmod|grep e1000e; modprobe e1000e; lsmod|grep e1000e
) or CONFIG_E1000E in /boot/config-$(uname -r). – sourcejedi Aug 01 '15 at 17:53lsmod
already shows the modulesmodprobe
won't do anything for any of them. And only three modules inlsmod
? surprising. It's possible e1000 and e1000e conflict (they can do & e1000 is somewhat deprecated)... I'm not sure it would cause this failure though. Hmm if the modules are loaded, they may warn if they don't like the device, do check the kernel boot log (dmesg
command) for messages from either module if you haven't already. – sourcejedi Aug 02 '15 at 19:09