mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
88f475ae87
When I can't get an 'official' short description from a package, directly, I get it from the executable's related man(1) page.
16 lines
334 B
Plaintext
16 lines
334 B
Plaintext
# dmesg
|
|
# Print or control the kernel ring buffer
|
|
|
|
# Print the ring buffer contents, then clear it.
|
|
dmesg -c
|
|
|
|
# Display the local time and the delta in human-readable format. Conversion to
|
|
# the local time could be inaccurate.
|
|
dmesg -e
|
|
|
|
# Print human-readable timestamps.
|
|
dmesg -T
|
|
|
|
# Human-readable output (color + reltime).
|
|
dmesg -H
|