{
    "content": [
        {
            "type": "text",
            "text": "# dmesg (man)\n\n## NAME\n\ndmesg - print or control the kernel ring buffer\n\n## SYNOPSIS\n\ndmesg [options]\n\n## DESCRIPTION\n\ndmesg is used to examine or control the kernel ring buffer.\n\n## TLDR\n\n> Write the kernel messages to `stdout`.\n\n- Show kernel messages:\n  `sudo dmesg`\n- Show kernel error messages:\n  `sudo dmesg {{-l|--level}} err`\n- Show kernel messages and keep [w]aiting for new ones, similar to `tail --follow` (available in kernels 3.5.0 and newer):\n  `sudo dmesg {{-w|--follow}}`\n- Show how much physical memory is available on this system:\n  `sudo dmesg | grep {{-i|--ignore-case}} memory`\n- Show kernel messages 1 page at a time:\n  `sudo dmesg | less`\n- Show kernel messages with a timestamp (available in kernels 3.5.0 and newer):\n  `sudo dmesg {{-T|--ctime}}`\n- Show kernel messages in human-readable form (available in kernels 3.5.0 and newer):\n  `sudo dmesg {{-H|--human}}`\n- Colorize output (available in kernels 3.5.0 and newer):\n  `sudo dmesg {{-L|--color}}`\n\n*Source: tldr-pages*\n\n## Sections\n\n- **NAME**\n- **SYNOPSIS** (3 subsections)\n- **DESCRIPTION**\n- **OPTIONS** (27 subsections)\n- **COLORS** (8 subsections)\n- **EXIT STATUS**\n- **AUTHORS**\n- **SEE ALSO**\n- **REPORTING BUGS**\n- **AVAILABILITY**\n\nUse structuredContent.sections for detailed options, examples, and full documentation.\n"
        }
    ],
    "structuredContent": {
        "command": "dmesg",
        "section": "",
        "mode": "man",
        "summary": "dmesg - print or control the kernel ring buffer",
        "synopsis": "dmesg [options]",
        "tldr_summary": "Write the kernel messages to `stdout`.",
        "tldr_examples": [
            {
                "description": "Show kernel messages",
                "command": "sudo dmesg"
            },
            {
                "description": "Show kernel error messages",
                "command": "sudo dmesg {{-l|--level}} err"
            },
            {
                "description": "Show kernel messages and keep [w]aiting for new ones, similar to `tail --follow` (available in kernels 3.5.0 and newer)",
                "command": "sudo dmesg {{-w|--follow}}"
            },
            {
                "description": "Show how much physical memory is available on this system",
                "command": "sudo dmesg | grep {{-i|--ignore-case}} memory"
            },
            {
                "description": "Show kernel messages 1 page at a time",
                "command": "sudo dmesg | less"
            },
            {
                "description": "Show kernel messages with a timestamp (available in kernels 3.5.0 and newer)",
                "command": "sudo dmesg {{-T|--ctime}}"
            },
            {
                "description": "Show kernel messages in human-readable form (available in kernels 3.5.0 and newer)",
                "command": "sudo dmesg {{-H|--human}}"
            },
            {
                "description": "Colorize output (available in kernels 3.5.0 and newer)",
                "command": "sudo dmesg {{-L|--color}}"
            }
        ],
        "tldr_source": "official",
        "flags": [
            {
                "flag": "-C",
                "long": "--clear",
                "arg": null,
                "description": "Clear the ring buffer."
            },
            {
                "flag": "-c",
                "long": "--read-clear",
                "arg": null,
                "description": "Clear the ring buffer after first printing its contents."
            },
            {
                "flag": "-D",
                "long": "--console-off",
                "arg": null,
                "description": "Disable the printing of messages to the console."
            },
            {
                "flag": "-d",
                "long": "--show-delta",
                "arg": null,
                "description": "Display the timestamp and the time delta spent between messages. If used together with --notime then only the time delta without the timestamp is printed."
            },
            {
                "flag": "-E",
                "long": "--console-on",
                "arg": null,
                "description": "Enable printing messages to the console."
            },
            {
                "flag": "-e",
                "long": "--reltime",
                "arg": null,
                "description": "Display the local time and the delta in human-readable format. Be aware that conversion to the local time could be inaccurate (see -T for more details)."
            },
            {
                "flag": "-F",
                "long": "--file",
                "arg": null,
                "description": "Read the syslog messages from the given file. Note that -F does not support messages in kmsg format. The old syslog format is supported only."
            },
            {
                "flag": "-f",
                "long": "--facility",
                "arg": null,
                "description": "Restrict output to the given (comma-separated) list of facilities. For example: dmesg --facility=daemon will print messages from system daemons only. For all supported facilities see the --help output."
            },
            {
                "flag": "-H",
                "long": "--human",
                "arg": null,
                "description": "Enable human-readable output. See also --color, --reltime and --nopager."
            },
            {
                "flag": "-k",
                "long": "--kernel",
                "arg": null,
                "description": "Print kernel messages."
            },
            {
                "flag": "-L",
                "long": "--color",
                "arg": null,
                "description": "Colorize the output. The optional argument when can be auto, never or always. If the when argument is omitted, it defaults to auto. The colors can be disabled; for the current built-in default see the --help output. See also the COLORS section below."
            },
            {
                "flag": "-l",
                "long": "--level",
                "arg": null,
                "description": "Restrict output to the given (comma-separated) list of levels. For example: dmesg --level=err,warn will print error and warning messages only. For all supported levels see the --help output."
            },
            {
                "flag": "-n",
                "long": "--console-level",
                "arg": null,
                "description": "Set the level at which printing of messages is done to the console. The level is a level number or abbreviation of the level name. For all supported levels see the --help output. 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."
            },
            {
                "flag": "",
                "long": "--noescape",
                "arg": null,
                "description": "The unprintable and potentially unsafe characters (e.g., broken multi-byte sequences, terminal controlling chars, etc.) are escaped in format \\x<hex> for security reason by default. This option disables this feature at all. It’s usable for example for debugging purpose together with --raw. Be careful and don’t use it by default."
            },
            {
                "flag": "-P",
                "long": "--nopager",
                "arg": null,
                "description": "Do not pipe output into a pager. A pager is enabled by default for --human output."
            },
            {
                "flag": "-p",
                "long": "--force-prefix",
                "arg": null,
                "description": "Add facility, level or timestamp information to each line of a multi-line message."
            },
            {
                "flag": "-r",
                "long": "--raw",
                "arg": null,
                "description": "Print the raw message buffer, i.e., do not strip the log-level prefixes, but all unprintable characters are still escaped (see also --noescape). 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'."
            },
            {
                "flag": "-S",
                "long": "--syslog",
                "arg": null,
                "description": "Force dmesg to use the syslog(2) kernel interface to read kernel messages. The default is to use /dev/kmsg rather than syslog(2) since kernel 3.5.0."
            },
            {
                "flag": "-s",
                "long": "--buffer-size",
                "arg": null,
                "description": "Use a buffer of size to query the kernel ring buffer. This is 16392 by default. (The default kernel syslog buffer size was 4096 at first, 8192 since 1.3.54, 16384 since 2.1.113.) If you have set the kernel buffer to be larger than the default, then this option can be used to view the entire buffer."
            },
            {
                "flag": "-T",
                "long": "--ctime",
                "arg": null,
                "description": "Print human-readable timestamps. 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 Display record since the specified time. The time is possible to specify in absolute way as well as by relative notation (e.g. '1 hour ago'). Be aware that the timestamp could be inaccurate and see --ctime for more details. --until time Display record until the specified time. The time is possible to specify in absolute way as well as by relative notation (e.g. '1 hour ago'). Be aware that the timestamp could be inaccurate and see --ctime for more details."
            },
            {
                "flag": "-t",
                "long": "--notime",
                "arg": null,
                "description": "Do not print kernel’s timestamps. --time-format format Print timestamps using the given format, which can be ctime, reltime, delta or iso. The first three formats are aliases of the time-format-specific options. The iso format is a dmesg implementation of the ISO-8601 timestamp format. The purpose of this format is to make the comparing of timestamps between two systems, and any other parsing, easy. The definition of the iso timestamp is: YYYY-MM-DD<T>HH:MM:SS,<microseconds>←+><timezone offset from UTC>. The iso format has the same issue as ctime: the time may be inaccurate when a system is suspended and resumed."
            },
            {
                "flag": "-u",
                "long": "--userspace",
                "arg": null,
                "description": "Print userspace messages."
            },
            {
                "flag": "-w",
                "long": "--follow",
                "arg": null,
                "description": "Wait for new messages. This feature is supported only on systems with a readable /dev/kmsg (since kernel 3.5.0)."
            },
            {
                "flag": "-W",
                "long": "--follow-new",
                "arg": null,
                "description": "Wait and print only new messages."
            },
            {
                "flag": "-x",
                "long": "--decode",
                "arg": null,
                "description": "Decode facility and level (priority) numbers to human-readable prefixes."
            },
            {
                "flag": "-V",
                "long": "--version",
                "arg": null,
                "description": "Display version information and exit."
            },
            {
                "flag": "-h",
                "long": "--help",
                "arg": null,
                "description": "Display help text and exit."
            }
        ],
        "examples": [],
        "see_also": [
            {
                "name": "terminal-colors.d",
                "section": "5",
                "url": "https://www.chedong.com/phpMan.php/man/terminal-colors.d/5/json"
            },
            {
                "name": "syslogd",
                "section": "8",
                "url": "https://www.chedong.com/phpMan.php/man/syslogd/8/json"
            }
        ],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 2,
                "subsections": [
                    {
                        "name": "dmesg --clear",
                        "lines": 4
                    },
                    {
                        "name": "dmesg --console-on",
                        "lines": 1
                    },
                    {
                        "name": "dmesg --console-off",
                        "lines": 1
                    }
                ]
            },
            {
                "name": "DESCRIPTION",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "OPTIONS",
                "lines": 3,
                "subsections": [
                    {
                        "name": "-C --clear",
                        "lines": 2,
                        "flag": "-C",
                        "long": "--clear"
                    },
                    {
                        "name": "-c --read-clear",
                        "lines": 2,
                        "flag": "-c",
                        "long": "--read-clear"
                    },
                    {
                        "name": "-D --console-off",
                        "lines": 2,
                        "flag": "-D",
                        "long": "--console-off"
                    },
                    {
                        "name": "-d --show-delta",
                        "lines": 3,
                        "flag": "-d",
                        "long": "--show-delta"
                    },
                    {
                        "name": "-E --console-on",
                        "lines": 2,
                        "flag": "-E",
                        "long": "--console-on"
                    },
                    {
                        "name": "-e --reltime",
                        "lines": 3,
                        "flag": "-e",
                        "long": "--reltime"
                    },
                    {
                        "name": "-F --file",
                        "lines": 3,
                        "flag": "-F",
                        "long": "--file"
                    },
                    {
                        "name": "-f --facility",
                        "lines": 7,
                        "flag": "-f",
                        "long": "--facility"
                    },
                    {
                        "name": "-H --human",
                        "lines": 2,
                        "flag": "-H",
                        "long": "--human"
                    },
                    {
                        "name": "-k --kernel",
                        "lines": 2,
                        "flag": "-k",
                        "long": "--kernel"
                    },
                    {
                        "name": "-L --color",
                        "lines": 4,
                        "flag": "-L",
                        "long": "--color"
                    },
                    {
                        "name": "-l --level",
                        "lines": 7,
                        "flag": "-l",
                        "long": "--level"
                    },
                    {
                        "name": "-n --console-level",
                        "lines": 8,
                        "flag": "-n",
                        "long": "--console-level"
                    },
                    {
                        "name": "--noescape",
                        "lines": 5,
                        "long": "--noescape"
                    },
                    {
                        "name": "-P --nopager",
                        "lines": 2,
                        "flag": "-P",
                        "long": "--nopager"
                    },
                    {
                        "name": "-p --force-prefix",
                        "lines": 2,
                        "flag": "-p",
                        "long": "--force-prefix"
                    },
                    {
                        "name": "-r --raw",
                        "lines": 8,
                        "flag": "-r",
                        "long": "--raw"
                    },
                    {
                        "name": "-S --syslog",
                        "lines": 3,
                        "flag": "-S",
                        "long": "--syslog"
                    },
                    {
                        "name": "-s --buffer-size",
                        "lines": 5,
                        "flag": "-s",
                        "long": "--buffer-size"
                    },
                    {
                        "name": "-T --ctime",
                        "lines": 17,
                        "flag": "-T",
                        "long": "--ctime"
                    },
                    {
                        "name": "-t --notime",
                        "lines": 13,
                        "flag": "-t",
                        "long": "--notime"
                    },
                    {
                        "name": "-u --userspace",
                        "lines": 2,
                        "flag": "-u",
                        "long": "--userspace"
                    },
                    {
                        "name": "-w --follow",
                        "lines": 3,
                        "flag": "-w",
                        "long": "--follow"
                    },
                    {
                        "name": "-W --follow-new",
                        "lines": 2,
                        "flag": "-W",
                        "long": "--follow-new"
                    },
                    {
                        "name": "-x --decode",
                        "lines": 2,
                        "flag": "-x",
                        "long": "--decode"
                    },
                    {
                        "name": "-V --version",
                        "lines": 2,
                        "flag": "-V",
                        "long": "--version"
                    },
                    {
                        "name": "-h --help",
                        "lines": 2,
                        "flag": "-h",
                        "long": "--help"
                    }
                ]
            },
            {
                "name": "COLORS",
                "lines": 5,
                "subsections": [
                    {
                        "name": "subsys",
                        "lines": 2
                    },
                    {
                        "name": "time",
                        "lines": 2
                    },
                    {
                        "name": "timebreak",
                        "lines": 2
                    },
                    {
                        "name": "alert",
                        "lines": 2
                    },
                    {
                        "name": "crit",
                        "lines": 2
                    },
                    {
                        "name": "err",
                        "lines": 2
                    },
                    {
                        "name": "warn",
                        "lines": 2
                    },
                    {
                        "name": "segfault",
                        "lines": 2
                    }
                ]
            },
            {
                "name": "EXIT STATUS",
                "lines": 3,
                "subsections": []
            },
            {
                "name": "AUTHORS",
                "lines": 4,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "REPORTING BUGS",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "AVAILABILITY",
                "lines": 6,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "dmesg - print or control the kernel ring buffer\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "dmesg [options]\n",
                "subsections": [
                    {
                        "name": "dmesg --clear",
                        "content": "dmesg --read-clear [options]\n\ndmesg --console-level level\n"
                    },
                    {
                        "name": "dmesg --console-on",
                        "content": ""
                    },
                    {
                        "name": "dmesg --console-off",
                        "content": ""
                    }
                ]
            },
            "DESCRIPTION": {
                "content": "dmesg is used to examine or control the kernel ring buffer.\n\nThe default action is to display all messages from the kernel ring buffer.\n",
                "subsections": []
            },
            "OPTIONS": {
                "content": "The --clear, --read-clear, --console-on, --console-off, and --console-level options are\nmutually exclusive.\n",
                "subsections": [
                    {
                        "name": "-C --clear",
                        "content": "Clear the ring buffer.\n",
                        "flag": "-C",
                        "long": "--clear"
                    },
                    {
                        "name": "-c --read-clear",
                        "content": "Clear the ring buffer after first printing its contents.\n",
                        "flag": "-c",
                        "long": "--read-clear"
                    },
                    {
                        "name": "-D --console-off",
                        "content": "Disable the printing of messages to the console.\n",
                        "flag": "-D",
                        "long": "--console-off"
                    },
                    {
                        "name": "-d --show-delta",
                        "content": "Display the timestamp and the time delta spent between messages. If used together with\n--notime then only the time delta without the timestamp is printed.\n",
                        "flag": "-d",
                        "long": "--show-delta"
                    },
                    {
                        "name": "-E --console-on",
                        "content": "Enable printing messages to the console.\n",
                        "flag": "-E",
                        "long": "--console-on"
                    },
                    {
                        "name": "-e --reltime",
                        "content": "Display the local time and the delta in human-readable format. Be aware that conversion\nto the local time could be inaccurate (see -T for more details).\n",
                        "flag": "-e",
                        "long": "--reltime"
                    },
                    {
                        "name": "-F --file",
                        "content": "Read the syslog messages from the given file. Note that -F does not support messages in\nkmsg format. The old syslog format is supported only.\n",
                        "flag": "-F",
                        "long": "--file"
                    },
                    {
                        "name": "-f --facility",
                        "content": "Restrict output to the given (comma-separated) list of facilities. For example:\n\ndmesg --facility=daemon\n\nwill print messages from system daemons only. For all supported facilities see the --help\noutput.\n",
                        "flag": "-f",
                        "long": "--facility"
                    },
                    {
                        "name": "-H --human",
                        "content": "Enable human-readable output. See also --color, --reltime and --nopager.\n",
                        "flag": "-H",
                        "long": "--human"
                    },
                    {
                        "name": "-k --kernel",
                        "content": "Print kernel messages.\n",
                        "flag": "-k",
                        "long": "--kernel"
                    },
                    {
                        "name": "-L --color",
                        "content": "Colorize the output. The optional argument when can be auto, never or always. If the when\nargument is omitted, it defaults to auto. The colors can be disabled; for the current\nbuilt-in default see the --help output. See also the COLORS section below.\n",
                        "flag": "-L",
                        "long": "--color"
                    },
                    {
                        "name": "-l --level",
                        "content": "Restrict output to the given (comma-separated) list of levels. For example:\n\ndmesg --level=err,warn\n\nwill print error and warning messages only. For all supported levels see the --help\noutput.\n",
                        "flag": "-l",
                        "long": "--level"
                    },
                    {
                        "name": "-n --console-level",
                        "content": "Set the level at which printing of messages is done to the console. The level is a level\nnumber or abbreviation of the level name. For all supported levels see the --help output.\n\nFor example, -n 1 or -n emerg prevents all messages, except emergency (panic) messages,\nfrom appearing on the console. All levels of messages are still written to /proc/kmsg, so\nsyslogd(8) can still be used to control exactly where kernel messages appear. When the -n\noption is used, dmesg will not print or clear the kernel ring buffer.\n",
                        "flag": "-n",
                        "long": "--console-level"
                    },
                    {
                        "name": "--noescape",
                        "content": "The unprintable and potentially unsafe characters (e.g., broken multi-byte sequences,\nterminal controlling chars, etc.) are escaped in format \\x<hex> for security reason by\ndefault. This option disables this feature at all. It’s usable for example for debugging\npurpose together with --raw. Be careful and don’t use it by default.\n",
                        "long": "--noescape"
                    },
                    {
                        "name": "-P --nopager",
                        "content": "Do not pipe output into a pager. A pager is enabled by default for --human output.\n",
                        "flag": "-P",
                        "long": "--nopager"
                    },
                    {
                        "name": "-p --force-prefix",
                        "content": "Add facility, level or timestamp information to each line of a multi-line message.\n",
                        "flag": "-p",
                        "long": "--force-prefix"
                    },
                    {
                        "name": "-r --raw",
                        "content": "Print the raw message buffer, i.e., do not strip the log-level prefixes, but all\nunprintable characters are still escaped (see also --noescape).\n\nNote that the real raw format depends on the method how dmesg reads kernel messages. The\n/dev/kmsg device uses a different format than syslog(2). For backward compatibility,\ndmesg returns data always in the syslog(2) format. It is possible to read the real raw\ndata from /dev/kmsg by, for example, the command 'dd if=/dev/kmsg iflag=nonblock'.\n",
                        "flag": "-r",
                        "long": "--raw"
                    },
                    {
                        "name": "-S --syslog",
                        "content": "Force dmesg to use the syslog(2) kernel interface to read kernel messages. The default is\nto use /dev/kmsg rather than syslog(2) since kernel 3.5.0.\n",
                        "flag": "-S",
                        "long": "--syslog"
                    },
                    {
                        "name": "-s --buffer-size",
                        "content": "Use a buffer of size to query the kernel ring buffer. This is 16392 by default. (The\ndefault kernel syslog buffer size was 4096 at first, 8192 since 1.3.54, 16384 since\n2.1.113.) If you have set the kernel buffer to be larger than the default, then this\noption can be used to view the entire buffer.\n",
                        "flag": "-s",
                        "long": "--buffer-size"
                    },
                    {
                        "name": "-T --ctime",
                        "content": "Print human-readable timestamps.\n\nBe aware that the timestamp could be inaccurate! The time source used for the logs is not\nupdated after system SUSPEND/RESUME. Timestamps are adjusted according to current delta\nbetween boottime and monotonic clocks, this works only for messages printed after last\nresume.\n\n--since time\nDisplay record since the specified time. The time is possible to specify in absolute way\nas well as by relative notation (e.g. '1 hour ago'). Be aware that the timestamp could be\ninaccurate and see --ctime for more details.\n\n--until time\nDisplay record until the specified time. The time is possible to specify in absolute way\nas well as by relative notation (e.g. '1 hour ago'). Be aware that the timestamp could be\ninaccurate and see --ctime for more details.\n",
                        "flag": "-T",
                        "long": "--ctime"
                    },
                    {
                        "name": "-t --notime",
                        "content": "Do not print kernel’s timestamps.\n\n--time-format format\nPrint timestamps using the given format, which can be ctime, reltime, delta or iso. The\nfirst three formats are aliases of the time-format-specific options. The iso format is a\ndmesg implementation of the ISO-8601 timestamp format. The purpose of this format is to\nmake the comparing of timestamps between two systems, and any other parsing, easy. The\ndefinition of the iso timestamp is: YYYY-MM-DD<T>HH:MM:SS,<microseconds>←+><timezone\noffset from UTC>.\n\nThe iso format has the same issue as ctime: the time may be inaccurate when a system is\nsuspended and resumed.\n",
                        "flag": "-t",
                        "long": "--notime"
                    },
                    {
                        "name": "-u --userspace",
                        "content": "Print userspace messages.\n",
                        "flag": "-u",
                        "long": "--userspace"
                    },
                    {
                        "name": "-w --follow",
                        "content": "Wait for new messages. This feature is supported only on systems with a readable\n/dev/kmsg (since kernel 3.5.0).\n",
                        "flag": "-w",
                        "long": "--follow"
                    },
                    {
                        "name": "-W --follow-new",
                        "content": "Wait and print only new messages.\n",
                        "flag": "-W",
                        "long": "--follow-new"
                    },
                    {
                        "name": "-x --decode",
                        "content": "Decode facility and level (priority) numbers to human-readable prefixes.\n",
                        "flag": "-x",
                        "long": "--decode"
                    },
                    {
                        "name": "-V --version",
                        "content": "Display version information and exit.\n",
                        "flag": "-V",
                        "long": "--version"
                    },
                    {
                        "name": "-h --help",
                        "content": "Display help text and exit.\n",
                        "flag": "-h",
                        "long": "--help"
                    }
                ]
            },
            "COLORS": {
                "content": "Implicit coloring can be disabled by an empty file /etc/terminal-colors.d/dmesg.disable. See\nterminal-colors.d(5) for more details about colorization configuration.\n\nThe logical color names supported by dmesg are:\n",
                "subsections": [
                    {
                        "name": "subsys",
                        "content": "The message sub-system prefix (e.g., \"ACPI:\").\n"
                    },
                    {
                        "name": "time",
                        "content": "The message timestamp.\n"
                    },
                    {
                        "name": "timebreak",
                        "content": "The message timestamp in short ctime format in --reltime or --human output.\n"
                    },
                    {
                        "name": "alert",
                        "content": "The text of the message with the alert log priority.\n"
                    },
                    {
                        "name": "crit",
                        "content": "The text of the message with the critical log priority.\n"
                    },
                    {
                        "name": "err",
                        "content": "The text of the message with the error log priority.\n"
                    },
                    {
                        "name": "warn",
                        "content": "The text of the message with the warning log priority.\n"
                    },
                    {
                        "name": "segfault",
                        "content": "The text of the message that inform about segmentation fault.\n"
                    }
                ]
            },
            "EXIT STATUS": {
                "content": "dmesg can fail reporting permission denied error. This is usually caused by dmesgrestrict\nkernel setting, please see syslog(2) for more details.\n",
                "subsections": []
            },
            "AUTHORS": {
                "content": "Karel Zak <kzak@redhat.com>\n\ndmesg was originally written by Theodore Ts’o <tytso@athena.mit.edu>.\n",
                "subsections": []
            },
            "SEE ALSO": {
                "content": "terminal-colors.d(5), syslogd(8)\n",
                "subsections": []
            },
            "REPORTING BUGS": {
                "content": "For bug reports, use the issue tracker at https://github.com/karelzak/util-linux/issues.\n",
                "subsections": []
            },
            "AVAILABILITY": {
                "content": "The dmesg command is part of the util-linux package which can be downloaded from Linux Kernel\nArchive <https://www.kernel.org/pub/linux/utils/util-linux/>.\n\n\n\nutil-linux 2.37.2                            2021-07-20                                     DMESG(1)",
                "subsections": []
            }
        }
    }
}