
dmesg
List of commands for dmesg:
-
dmesg:tldr:0f24c dmesg: Show how much physical memory is available on this system.$ dmesg | grep -i memorytry on your machineexplain this command
-
dmesg:tldr:12457 dmesg: Show kernel messages and keep reading new ones, similar to `tail -f` (available in kernels 3.5.0 and newer).$ dmesg -wtry on your machineexplain this command
-
dmesg:tldr:509e4 dmesg: Colorize output (available in kernels 3.5.0 and newer).$ dmesg -Ltry on your machineexplain this command
-
dmesg:tldr:b3102 dmesg: Show kernel messages with a timestamp (available in kernels 3.5.0 and newer).$ dmesg -Ttry on your machineexplain this command
-
dmesg:tldr:e0858 dmesg: Show kernel error messages.$ dmesg --level errtry on your machineexplain this command
-
dmesg:tldr:e8bb0 dmesg: Show kernel messages in human-readable form (available in kernels 3.5.0 and newer).$ dmesg -Htry on your machineexplain this command
-
dmesg:tldr:ee86f dmesg: Show kernel messages 1 page at a time.$ dmesg | lesstry on your machineexplain this command