zl程序教程

您现在的位置是:首页 >  系统

当前栏目

查看Linux系统版本信息

Linux系统 查看 版本信息
2023-06-13 09:11:59 时间

大家好,又见面了,我是你们的朋友全栈君。 在使用Linux操作系统的时候,有时候会需要了解当前使用的系统版本信息,特别是在给别人进行服务器部署运维的时候,准确的系统版本信息至关重要,今天明月就给大家分享几个获取 Linux 系统版本信息的命令。

一、查看Linux内核版本命令(两种方法): 1、cat /proc/version

[root@S-CentOS home]# cat /proc/versionLinux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013

2、uname -a

[root@S-CentOS home]# uname -aLinux S-CentOS 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

二、查看Linux系统版本的命令(3种方法): 1、lsb_release -a,即可列出所有版本信息:

[root@S-CentOS ~]# lsb_release -aLSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarchDistributor ID: CentOSDescription: CentOS release 6.5 (Final)Release: 6.5Codename: Final

这个命令适用于所有的Linux发行版,包括RedHat、SUSE、Debian…等发行版。

2、cat /etc/redhat-release,这种方法只适合Redhat系的Linux:

[root@S-CentOS home]# cat /etc/redhat-releaseCentOS release 6.5 (Final)

3、cat /etc/issue,此命令也适用于所有的Linux发行版。

[root@S-CentOS home]# cat /etc/issueCentOS release 6.5 (Final)Kernel \r on an \m

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/135306.html原文链接:https://javaforall.cn