1

I need to support the realtek rtl8139 network card - is this included in modern (> 3.0) linux kernels? do I have to load any modules or install anything?

Michael Neale
  • 3,704
  • 5
  • 28
  • 26

4 Answers4

5

The Realtek is a fairly standard adapter and has been in the mainline kernel for a long time. The driver/module is 8139cp.ko. The device should be auto-detected on a modern Linux distribution.

ewwhite
  • 197,159
  • 92
  • 443
  • 809
3

Sure. Drivers 8139cp and 8139too.

poige
  • 9,448
  • 2
  • 25
  • 52
3

The driver has been included in the standard kernel distribution for many years.

David Schwartz
  • 31,449
  • 2
  • 55
  • 84
1

Depends on your Linux kernel vendor(Linux distribution). But most likely it has one. To check grep/zgrep your /boot/config-$(uname -r) / /proc/config.gz / .config for string 8139:

rbtz@linux:~$ grep 8139 /boot/config-$(uname -r)
CONFIG_8139CP=m
CONFIG_8139TOO=m
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
CONFIG_8139TOO_8129=y
# CONFIG_8139_OLD_RX_RESET is not set
SaveTheRbtz
  • 5,691
  • 4
  • 32
  • 45