Posts tagged as:

device driver module

You need to remove driver related to Ethernet card. Under Linux use following commands:
1) Find out driver attached to eth0 using following command
lsmod | less
2) Remove the driver using rmmod command:
rmmod driver-name
3) Again insert driver into kernel using
modprobe driver-name
For example, let us assume your driver name is 8139too , then your command should [...]

{ 0 comments }