BreadCrumbs: Linux Modules
Linux Modules
From Luke Jackson
(Difference between revisions)
Revision as of 16:46, 28 December 2006 (edit) Ljackson (Talk | contribs) ← Previous diff |
Current revision (20:01, 28 December 2006) (edit) Ljackson (Talk | contribs) |
||
Line 1: | Line 1: | ||
+ | To find a module in the kernel's module dir: | ||
find /lib/modules/ -iname '*.ko' -or -iname '*.o' | grep fuse | find /lib/modules/ -iname '*.ko' -or -iname '*.o' | grep fuse | ||
+ | |||
+ | Handy bash alias | ||
+ | alias locatemodule="find /lib/modules/$(uname -r) -iname '*.ko' -or -iname '*.o' | grep " | ||
+ | |||
+ | [[Category:Linux]] | ||
+ | [[Category:Mac OS X]] |
Current revision
To find a module in the kernel's module dir:
find /lib/modules/ -iname '*.ko' -or -iname '*.o' | grep fuse
Handy bash alias
alias locatemodule="find /lib/modules/$(uname -r) -iname '*.ko' -or -iname '*.o' | grep "