从这里:http://www.xenomai.org/index.php/RTnet:Installation_%26_Testing#Debugging_RTnet
实时网络设备的Linux驱动程序内置于内核中并阻塞硬件。
当我执行时,rmmod 8139too
它说该模块不存在于/proc/modules
.
内核是2.6.38.8 (64 bit)
.
针对该问题我还应该提供哪些其他信息?
linux-y3pi:~ # uname -a
Linux linux-y3pi 2.6.38.8-12-desktop #2 SMP PREEMPT Fri Jun 1 17:27:16 IST 2012 x86_64 x86_64 x86_64 GNU/Linux
linux-y3pi:~ # ifconfig
eth0 Link encap:Ethernet HWaddr 00:24:8C:D9:D6:2E
inet addr:192.168.16.86 Bcast:192.168.16.255 Mask:255.255.255.0
inet6 addr: fe80::224:8cff:fed9:d62e/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:414 errors:0 dropped:0 overruns:0 frame:0
TX packets:261 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:118971 (116.1 Kb) TX bytes:35156 (34.3 Kb)
Interrupt:17 Base address:0x4000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:68 errors:0 dropped:0 overruns:0 frame:0
TX packets:68 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:4720 (4.6 Kb) TX bytes:4720 (4.6 Kb)
linux-y3pi:~ # ethtool -i eth0
driver: r8169
version: 2.3LK-NAPI
firmware-version:
bus-info: 0000:01:00.0
linux-y3pi:~ # rmmod r8169
linux-y3pi:~ # ethtool eth0
Settings for eth0:
Cannot get device settings: No such device
Cannot get wake-on-lan settings: No such device
Cannot get message level: No such device
Cannot get link status: No such device
No data available
linux-y3pi:~ # lsmod|grep 8169
linux-y3pi:~ # lsmod|grep 8139
linux-y3pi:~ #
.config 来自 /usr/src/linux-2.6.38.8
CONFIG_R8169=m
CONFIG_R8169_VLAN=y
CONFIG_8139CP=m
CONFIG_8139TOO=m
#CONFIG_8139TOO_PIO is not set
#CONFIG_8139TOO_TUNE_TWISTER is not set
CONFIG_8139TOO_8129=y
#CONFIG_8139_OLD_RX_RESET is not set
答案1
rmmod 8139too
不起作用,因为:
- 8139 支持内置于内核中,并且驱动程序无法卸载,因为它不是模块。在许多系统上,都有一个
/boot/config-2.6.38.8
文件(或类似文件)。您可以grep
使用“8139TOO”之类的名称。如果您看到类似的内容CONFIG_8139TOO=m
,则8139too
驱动程序被编译为模块。如果是CONFIG_8139TOO=y
,则驱动程序已内置到内核中。如果它显示类似于 的内容# CONFIG_8139TOO is not set
,则驱动程序尚未在以下位置编译全部。 - 您的以太网卡不使用 RTL8139 芯片,因此未加载其驱动程序。您必须找到您想要的以太网端口的驱动程序并卸载那个反而。如果有
lshw
,请说sudo lshw | less
并查找eth0
:将列出驱动程序模块。如果有systool
,请尝试sudo systool -c net -A uevent eth0
寻找该DRIVER=
零件。右侧应显示加载的用于处理设备的驱动程序。dmesg | grep eth0
也可能有效,但它不是 100% 可靠,特别是如果您的系统已经运行了一段时间(如果有/var/log/dmesg
,您可能也想这么做grep eth0 /var/log/dmesg
)。