2019年2月26日 星期二

[Linux 學習筆記] 如何找到系統上所有可用 module

How to find all available modules on system


  1. Find those loaded module
    1. Use command "lsmod"
  2. Find a specific module name and its usage
    1. Check this website: LKDDb: Linux Kernel Driver DataBase
  3. Find all modules which can be used
    1. cd /lib/modules/
    2. "uname -r"
      1. To check Linux kernel release
    3. cd 4.9.11-myimx6-g7c9eb82-dirty/
      1. Pick this kernel to check all available modules
    4. find . -name *.ko
      1. To list all available modules
  4. Reference

沒有留言:

張貼留言