linux – 为什么“lsmod | wc -l“不等于”ls / sys / module | wc -l“

前端之家收集整理的这篇文章主要介绍了linux – 为什么“lsmod | wc -l“不等于”ls / sys / module | wc -l“前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么这两个命令会返回不同的结果?
lsmod | wc -l
100

ls /sys/module | wc -l
138

解决方法

lsmod列出了所有加载的动态模块.

/ sys / module中的条目对应于内核中内置的动态模块和模块(并且具有需要可访问的参数),而不是动态加载.例如:

[michael@brazzers:~]$ls -d /sys/module/ip_tables/
/sys/module/ip_tables/
[michael@brazzers:~]$lsmod |grep ^ip_tables
ip_tables              26995  3 iptable_filter,iptable_mangle,iptable_nat
[michael@brazzers:~]$grep CONFIG_NF_NAT_IPV4 /boot/config-3.8.0-30-generic
CONFIG_NF_NAT_IPV4=m

您可以在此处看到iptables模块配置为动态模块.相比较:

[michael@brazzers:~]$ls -d /sys/module/apparmor/
/sys/module/apparmor/
[michael@brazzers:~]$lsmod |grep ^apparmor
[michael@brazzers:~]$grep APPARMOR /boot/config-3.8.0-30-generic 
CONFIG_SECURITY_APPARMOR=y

而apparmor是内置的.

原文链接:https://www.f2er.com/linux/401027.html

猜你在找的Linux相关文章