답변:
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
반면에 복장은 내장되어 있습니다.