|--Linux lsmod命令

  用于显示已载入系统的模块。
  执行lsmod(list modules)指令,会列出所有已载入系统的模块。
  Linux操作系统的核心具有模块化的特性,因此在编译核心时,
  不须把全部的功能都放入核心。可以将这些功能编译成一个个单独的模块,
  待需要时再分别载入。
|--语法
  lsmod
  eg:
    显示模块信息
    # lsmod

Module Size Used by
nfsd 238935 11
lockd 64849 1 nfsd
nfs_acl 2245 1 nfsd
auth_rpcgss 33735 1 nfsd
sunrpc 193181 10 nfsd,lockd,nfs_acl,auth_rpcgss
exportfs 3437 1 nfsd
xt_TCPMSS 2931 1
xt_tcpmss 1197 1
xt_tcpudp 2011 1

相关文章:

  • 2021-09-25
  • 2022-01-14
  • 2022-12-23
  • 2021-10-04
  • 2022-12-23
  • 2021-10-08
  • 2021-11-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-24
  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
相关资源
相似解决方案