系统相关
首页 > 系统相关> > linux 内核报错解决

linux 内核报错解决

作者:互联网

insmod: ERROR: could not insert module pf_ring.ko: File exists
报该错误的时候说明linux内核已经加载了该文件。

[root@h187 kernel]# rmmod pf_ring
rmmod: ERROR: Module pf_ring is in use by: ixgbe
说明pf_ring 已经在万兆网卡驱动上调用了。

[root@h187 kernel]# rmmod ixgbe
[root@h187 kernel]#
[root@h187 kernel]#
[root@h187 kernel]# rmmod pf_ring

需要先卸载ixgbe万兆网卡驱动,然后在从内核中移除pf_ring

标签:kernel,rmmod,pf,内核,linux,报错,ring,root,h187
来源: https://blog.51cto.com/imccie/2392276