centos用什么命令可查版本号
时间:2022-03-29 11:22
查版本号的命令:1、“cat /etc/issue”或“cat /etc/redhat-release”,可输出centos版本号;2、“cat /proc/version”、“uname -a”或“uname -r”,可输出内核版本号。 本教程操作环境:centos6.5系统、thinkpad t480电脑。 cat /etc/issue cat /etc/redhat-release cat /proc/version uname -a uname -r 推荐:《centos使用教程》 以上就是centos用什么命令可查版本号的详细内容,更多请关注gxlsystem.com其它相关文章!查看centos版本
[root@localhost ~]# cat /etc/issue
CentOS release 6.5 (Final)
Kernel \r on an \m
[root@localhost ~]# cat /etc/redhat-release
CentOS release 6.5 (Final)
查看内核linux版本
[root@localhost ~]# cat /proc/version
Linux version 2.6.32-754.15.3.el6.x86_64 (mockbuild@x86-01.bsys.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-23) (GCC) ) #1 SMP Tue Jun 18 16:25:32 UTC 2019
[root@localhost ~]# uname -a
Linux localhost.localdomain 2.6.32-754.15.3.el6.x86_64 #1 SMP Tue Jun 18 16:25:32 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost ~]# uname -r
2.6.32-754.15.3.el6.x86_64