modutils-desc.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <sect2>
  2. <title>Contents</title>
  3. <para>
  4. The Modutils package contains the depmod, genksyms, insmod,
  5. insmod_ksymoops_clean, kerneld, kernelversion, ksyms, lsmod, modinfo,
  6. modprobe and rmmod programs.
  7. </para>
  8. </sect2>
  9. <sect2><title>Description</title>
  10. <sect3><title>depmod</title>
  11. <para>
  12. depmod handles dependency descriptions for loadable kernel modules.
  13. </para>
  14. </sect3>
  15. <sect3><title>genksyms</title>
  16. <para>
  17. genksyms reads (on standard input) the output from gcc -E source.c
  18. and generates a file containing version information.
  19. </para>
  20. </sect3>
  21. <sect3><title>insmod</title>
  22. <para>
  23. insmod installs a loadable module in the running kernel.
  24. </para>
  25. </sect3>
  26. <sect3><title>insmod_ksymoops_clean</title>
  27. <para>
  28. insmod_ksymoops_clean deletes saved ksyms and modules not accessed in
  29. 2 days.
  30. </para>
  31. </sect3>
  32. <sect3><title>kerneld</title>
  33. <para>
  34. kerneld performs kernel action in user space (such as on-demand loading of
  35. modules)
  36. </para>
  37. </sect3>
  38. <sect3><title>kernelversion</title>
  39. <para>
  40. kernelversion reports the major version of the running kernel.
  41. </para>
  42. </sect3>
  43. <sect3><title>ksyms</title>
  44. <para>
  45. ksyms displays exported kernel symbols.
  46. </para>
  47. </sect3>
  48. <sect3><title>lsmod</title>
  49. <para>
  50. lsmod shows information about all loaded modules.
  51. </para>
  52. </sect3>
  53. <sect3><title>modinfo</title>
  54. <para>
  55. modinfo examines an object file associated with a kernel module and
  56. displays any information that it can glean.
  57. </para>
  58. </sect3>
  59. <sect3><title>modprobe</title>
  60. <para>
  61. Modprobe uses a Makefile-like dependency file, created by depmod,
  62. to automatically load the relevant module(s) from the set of modules
  63. available in predefined directory trees.
  64. </para>
  65. </sect3>
  66. <sect3><title>rmmod</title>
  67. <para>
  68. rmmod unloads loadable modules from the running kernel.
  69. </para>
  70. </sect3>
  71. </sect2>