我想卸载显示为繁忙的内核模块

我想卸载显示为繁忙的内核模块

我想从 RHEL 7.2 上的内核卸载模块“gsch 和 redirfs”,这会导致频繁的内核恐慌。

但是当我尝试卸载时,出现以下错误。

# modprobe -r gsch
modprobe: FATAL: Module gsch is in use.

# modprobe -r redirfs
modprobe: FATAL: Module redirfs is in use.

# lsmod | grep gsch
gsch                   88591  4
redirfs                79430  1 gsch

经检查,没有进程持有这些模块,

# ps -ef | grep gsch
root     26417  7838  0 10:58 pts/3    00:00:00 grep --color=auto gsch
# lsof | grep gsch
#

答案1

这些模块用于防病毒软件的实时文件访问。从“Trend Deep Security Agent”Trend Micro Antivirus 的名称来看,它可能是另一个。

答案2

这些是趋势趋势科技服务器深度安全防护系统客户端的模块:

# locate gsch
/opt/ds_agent/2.6.32-431.el6.x86_64/gsch.ko
/opt/ds_agent/2.6.32-431.el6.x86_64/gsch.ko.version
/opt/ds_agent/2.6.32-642.3.1.el6.x86_64/gsch.ko
/opt/ds_agent/2.6.32-642.3.1.el6.x86_64/gsch.ko.version

# locate redirfs
/opt/ds_agent/2.6.32-431.el6.x86_64/redirfs.ko
/opt/ds_agent/2.6.32-642.3.1.el6.x86_64/redirfs.ko

相关内容