手机版

Linux dmesg命令 - Linux系统设置命令参数及用法大全

2019-09-17 阅读 :

Linux dmesg命令用于显示开机信息。

kernel会将开机信息存储在ring buffer中。您若是开机时来不及查看信息,可利用dmesg来查看。开机信息亦保存在/var/log目录中,名称为dmesg的文件里。

语法

dmesg [-cn][-s <缓冲区大小>]

参数说明

  • -c  显示信息后,清除ring buffer中的内容。
  • -s<缓冲区大小>  预设置为8196,刚好等于ring buffer的大小。
  • -n  设置记录信息的层级。

实例

显示开机信息

# dmesg |lessWARNING: 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

阿里云服务器优惠网 阿里云优惠券 服务器教程 vps教程 vps是什么 网络工具 网站工具 服务器知识

本文标题:Linux dmesg命令 - Linux系统设置命令参数及用法大全 - 服务器教程_服务器技术_服务器知识_vps教程
本文地址:https://www.helloaliyun.com/tutorial/824.html

相关文章

  • CentOS 7 常用命令(系统关机、重启以及登出)

    关机:(系统的关机、重启以及登出 ) # 关闭系统(1)[root@localhost ~]# shutdown -h now # 关闭系统(2)[root@localhost ~]# init 0 # 关闭系统(3)[root@localhost ~]# telinit 0 # 按预定时间关闭系统[root@localhost...

    2019-12-07 服务器教程
  • linux重启命令 reboot与shutdown -r now的区别与联系

    在linux命令中reboot是重新启动,shutdown -r now是立即停止然后重新启动,都说他们两个是一样的,其实是有一定的区别的。shutdown命令可以安全地关闭或重启Linux系统,它在系统关闭之前给系统上的所有登录用户提示一条警告...

    2019-12-07 服务器教程
  • CentOS 7 如何使用命令重启或关机

    安装GNOME的朋友们首先切换到字符界面。切换到字符界面的方法如下: 先登陆进入系统,进入图形化界面,然后按Ctrl+Alt+F6(笔记本的是Ctrl+Alt+shift+Fn),进入字符界面。关机命令:shutdown或poweroffshutdown:shutdown -h now...

    2019-12-07 服务器教程
  • CentOS 7 正确关机重启的命令方法

    linux主要用于服务器领域,而在服务器上执行一项服务是永无止境的,除非遇到特殊情况,否则不会关机。和Windows不同,在linux系统下,很多进程是在后台执行的。在屏幕背后,可能有很多人同时在工作。如果直接按下电源的按钮,其他...

    2019-12-07 服务器教程
  • CentOS下的yum upgrade和yum update区别,没事别乱用!

    说明:生产环境对软件版本和内核版本要求非常精确,别没事有事随便的进行yum update操作!!!!!!!!!yum update: 升级所有包同时也升级软件和系统内核yum upgrade:只升级所有包,不升级软件和系统内核...

    2019-12-07 服务器教程
你可能感兴趣
热门浏览