Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any command, to list out static modules after booting

share|improve this question
1  
I'm not aware of one, if by "static modules", you mean modules that are compiled into the kernel itself, as opposed to runtime loaded modules. They are not distinct modules when they are part of the kernel proper. – Mats Petersson Dec 27 '12 at 14:24

closed as not a real question by sudo_O, brian d foy, Daniel Fischer, Simone Carletti, ZombieSheep Dec 27 '12 at 21:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

That's the whole point of "module".

If it's not a module, it's an integral part of the kernel, hence a part of kernel binary. So no, you can not get a "list" of those, at least not dynamically.

If you have stock kernel - probably in /boot directory you have files like config-3.2.0-34-generic, which tell you how your kernel has been compiled. Grep out everything that's a module and that's disabled and you'll be left over with all the features that are compiled in.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.