table of contents
DMESG(1) | User Commands | DMESG(1) |
NAME¶
dmesg - print or control the kernel ring buffer
SYNOPSIS¶
dmesg [options]
dmesg --clear
dmesg --read-clear [options]
dmesg --console-level level
dmesg --console-on
dmesg --console-off
DESCRIPTION¶
dmesg is used to examine or control the kernel ring buffer.
The default action is to display all messages from the kernel ring buffer.
OPTIONS¶
The --clear, --read-clear, --console-on, --console-off, and --console-level options are mutually exclusive.
-C, --clear
-c, --read-clear
-D, --console-off
-d, --show-delta
-E, --console-on
-e, --reltime
-F, --file file
-f, --facility list
dmesg --facility=daemon
will print messages from system daemons only. For all supported facilities see the --help output.
-H, --human
-k, --kernel
-L, --color[=when]
-l, --level list
dmesg --level=err,warn
will print error and warning messages only. For all supported levels see the --help output.
-n, --console-level level
For example, -n 1 or -n emerg prevents all messages, except emergency (panic) messages, from appearing on the console. All levels of messages are still written to /proc/kmsg, so syslogd(8) can still be used to control exactly where kernel messages appear. When the -n option is used, dmesg will not print or clear the kernel ring buffer.
--noescape
-P, --nopager
-p, --force-prefix
-r, --raw
Note that the real raw format depends on the method how dmesg reads kernel messages. The /dev/kmsg device uses a different format than syslog(2). For backward compatibility, dmesg returns data always in the syslog(2) format. It is possible to read the real raw data from /dev/kmsg by, for example, the command 'dd if=/dev/kmsg iflag=nonblock'.
-S, --syslog
-s, --buffer-size size
-T, --ctime
Be aware that the timestamp could be inaccurate! The time source used for the logs is not updated after system SUSPEND/RESUME. Timestamps are adjusted according to current delta between boottime and monotonic clocks, this works only for messages printed after last resume.
--since time
--until time
-t, --notime
--time-format format
The iso format has the same issue as ctime: the time may be inaccurate when a system is suspended and resumed.
-u, --userspace
-w, --follow
-W, --follow-new
-x, --decode
-V, --version
-h, --help
COLORS¶
Implicit coloring can be disabled by an empty file /etc/terminal-colors.d/dmesg.disable. See terminal-colors.d(5) for more details about colorization configuration.
The logical color names supported by dmesg are:
subsys
time
timebreak
alert
crit
err
warn
segfault
EXIT STATUS¶
dmesg can fail reporting permission denied error. This is usually caused by dmesg_restrict kernel setting, please see syslog(2) for more details.
AUTHORS¶
Karel Zak <kzak@redhat.com>
dmesg was originally written by Theodore Ts’o <tytso@athena.mit.edu>.
SEE ALSO¶
terminal-colors.d(5), syslogd(8)
REPORTING BUGS¶
For bug reports, use the issue tracker at <https://github.com/karelzak/util-linux/issues>.
AVAILABILITY¶
The dmesg command is part of the util-linux package which can be downloaded from Linux Kernel Archive <https://www.kernel.org/pub/linux/utils/util-linux/>.
2022-02-14 | util-linux 2.37.4 |