1Z0-100 · Question #104
Which three statements are true configuration files and the behavior of module parameters specified in those files, in the /etc/modprobe.d directory?
The correct answer is A. The files may contain options to be passed to a module only when it is a dependency of a module C. The files may contain options to be passed to a module, only when it is inserted using a D. The files may contain alias names for modules. modprobe.d - Configuration directory for modprobe Because the modprobe command can add or remove more than one module, due to modules having dependencies, we need a method of specifying what options are to be used with those modules (A). All files underneath the /etc/modprobe.d…
Question
Which three statements are true configuration files and the behavior of module parameters specified in those files, in the /etc/modprobe.d directory?
Options
- AThe files may contain options to be passed to a module only when it is a dependency of a module
- BThe file may contain shell commands to be run instead of inserting a particular module in the
- CThe files may contain options to be passed to a module, only when it is inserted using a
- DThe files may contain alias names for modules.
- EThe file may contain instructions to ignore certain modules.
- FThe files may contain options to be passed to a module only when it is Inserted using an insmod
How the community answered
(58 responses)- A84% (49)
- B2% (1)
- E9% (5)
- F5% (3)
Explanation
modprobe.d - Configuration directory for modprobe Because the modprobe command can add or remove more than one module, due to modules having dependencies, we need a method of specifying what options are to be used with those modules (A). All files underneath the /etc/modprobe.d directory which end with the .conf extension specify those options as required. They can also be used to create convenient aliases (D): alternate names for a module, or they can override the normal modprobe behavior altogether for those with special requirements (such as inserting more than one module). C: options modulename option... This command allows you to add options to the module modulename (which might be an alias) every time it is inserted into the kernel: whether directly (using modprobemodulename or because the module being inserted depends on this module.
Topics
Community Discussion
No community discussion yet for this question.