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 |
Revision as of 17:00, 28 December 2006 (edit) Ryuji (Talk | contribs) Next diff → |
||
| 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 " | ||
Revision as of 17:00, 28 December 2006
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 "