HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dmesg — Write the kernel messages to `stdout`. More information: <https://keith.github.io/xcode-man-pages/dm

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandstdoutclimessageswritedmesgkernel
macos

Problem

How to use the dmesg command: Write the kernel messages to stdout. More information: <https://keith.github.io/xcode-man-pages/dmesg.8.html>.

Solution

dmesg — Write the kernel messages to stdout. More information: <https://keith.github.io/xcode-man-pages/dmesg.8.html>.

Show kernel messages:
dmesg


Show how much physical memory is available on this system:
dmesg | grep -i memory


Show kernel messages 1 page at a time:
dmesg | less

Code Snippets

Show kernel messages

dmesg

Show how much physical memory is available on this system

dmesg | grep -i memory

Show kernel messages 1 page at a time

dmesg | less

Context

tldr-pages: osx/dmesg

Revisions (0)

No revisions yet.