1. 程式人生 > >linux 內核報錯解決

linux 內核報錯解決

ould error root erro 文件 錯誤 需要 file rmmod

insmod: ERROR: could not insert module pf_ring.ko: File exists
報該錯誤的時候說明linux內核已經加載了該文件。

[[email protected] kernel]# rmmod pf_ring
rmmod: ERROR: Module pf_ring is in use by: ixgbe
說明pf_ring 已經在萬兆網卡驅動上調用了。

[[email protected] kernel]# rmmod ixgbe
[[email protected] kernel]#
[[email protected] kernel]#

[[email protected] kernel]# rmmod pf_ring

需要先卸載ixgbe萬兆網卡驅動,然後在從內核中移除pf_ring

linux 內核報錯解決