linux查看系统内核版本

方法一:uname -a
Linux centos7_test 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
方法二:cat /proc/version
Linux version 3.10.0-957.21.2.el7.x86_64 ([email protected]) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) ) #1 SMP Wed Jun 5 14:26:44 UTC 2019

另:
查看操作系统版本:cat /etc/redhat-release 或者 lsb_release -a
CentOS Linux release 7.6.1810 (Core)
查看CPU信息:cat /proc/cpuinfo
查看内存信息:cat /proc/meminfo
查看网卡信息:dmesg | grep -i eth
查看磁盘信息:lsblk

你可能感兴趣的:(linux查看系统内核版本)