LFCS · Question #735
Which of the following kernel parameters instructs the kernel to suppress most boot messages?
The correct answer is D. quiet. To suppress most boot messages displayed by the kernel, the quiet kernel parameter is used.
Question
Options
- Asilent
- Bverbose=0
- Cnomesg
- Dquiet
How the community answered
(41 responses)- A5% (2)
- C2% (1)
- D93% (38)
Why each option
To suppress most boot messages displayed by the kernel, the `quiet` kernel parameter is used.
There is no standard kernel parameter named `silent` for suppressing boot messages.
While some applications might use `verbose=0` for minimal output, it is not a standard kernel parameter for controlling boot messages.
There is no standard kernel parameter named `nomesg` for suppressing boot messages; `dmesg` is a command to view kernel messages, but `nomesg` is not a parameter.
The `quiet` kernel parameter instructs the kernel to suppress most messages printed to the console during the boot process. This is commonly used to provide a cleaner, less verbose boot experience for end-users.
Concept tested: Linux kernel boot parameters, quiet mode
Source: https://www.kernel.org/doc/html/latest/admin-guide/kernel-parameters.html
Topics
Community Discussion
No community discussion yet for this question.