17370845950

linux显示内核消息是什么-dmesg 命令使用与实例

Linux dmesg 命令

dmesg(全称 display message)是 Linux 系统中的一个实用命令,用于查看系统启动时的内核日志信息。

在系统启动过程中,内核会将相关消息记录在 ring buffer 中。如果在开机时未能及时查看这些信息,可以通过 dmesg 命令来获取。此外,这些信息也会被保存在 /var/log 目录下的 dmesg 文件中。

命令格式

dmesg [-cn][-s ]

参数说明

  • -c 查看信息后清空 ring buffer。
  • -s 指定缓冲区大小,默认为 8196,与 ring buffer 的容量一致。
  • -n 设置日志信息的输出级别。

使用示例

查看系统启动信息:

# dmesg |less
WARNING: terminal is not fully functional
[  0.000000] Initializing cgroup subsys cpuset
[  0.000000] Initializing cgroup subsys cpu
[  0.000000] Linux version 2.6.32-21-generic (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #32-Ubuntu SMP Fri Apr 16 08:10:02 UTC 2010 (Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2)
[  0.000000] KERNEL supported cpus:
[  0.000000]  Intel GenuineIntel
[  0.000000]  AMD AuthenticAMD
[  0.000000]  NSC Geode by NSC
[  0.000000]  Cyrix CyrixInstead
[  0.000000]  Centaur CentaurHauls
[  0.000000]  Transmeta GenuineTMx86
[  0.000000]  Transmeta TransmetaCPU
[  0.000000]  UMC UMC UMC UMC
[  0.000000] BIOS-provided physical RAM map:
[  0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[  0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[  0.000000] BIOS-e820: 00000000000ca000 - 00000000000cc000 (reserved)
[  0.000000] BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
[  0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
[  0.000000] BIOS-e820: 0000000000100000 - 000000003fef0000 (usable)
[  0.000000] BIOS-e820: 000000003fef0000 - 000000003feff000 (ACPI data)
[  0.000000] BIOS-e820: 000000003feff000 - 000000003ff00000 (ACPI NVS)

……省略部分内容

将内核启动信息保存到文件中:

#pwd   //查看当前所在路径
/home/hnlinux/

dmesg > boot.msg //把启动信息写入 boot.msg 文件

ls //列出当前目录内容

boot.msg