linux下查看系统版本
程序员文章站
2022-03-16 21:33:29
工作中我们会遇到安装软件需要知道linux是什么发行版本,话不多话上干货(按照我认为常用排序) 1. lsb_release a 名词解释:LSB (Linux Standard Base) 2. cat /etc/issue 3. cat /proc/version 4. uname a 查看版本 ......
工作中我们会遇到安装软件需要知道linux是什么发行版本,话不多话上干货(按照我认为常用排序)
1. lsb_release -a
名词解释:lsb (linux standard base)
# 如果没有这个命令 可以使用yum或者其他方式安装包 redhat-lsb-core lsb version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch distributor id: centos description: centos release 6.7 (final) release: 6.7 codename: final
2. cat /etc/issue
centos release 6.7 (final)
3. cat /proc/version
#linux查看当前操作系统版本信息 这里centos是redhat的分支,所以显示了redhat linux version 2.6.32-573.22.1.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (red hat 4.4.7-16) (gcc) ) #1 smp wed mar 23 03:35:39 utc 2016
4. uname -a
查看版本当前操作系统内核信息,输出如下:
#同时会输出系统架构和时间信息 linux name 2.6.32-573.22.1.el6.x86_64 #1 smp wed mar 23 03:35:39 utc 2016 x86_64 x86_64 x86_64 gnu/linux
5. cat /etc/os-release(有点鸡肋)
#这里的os是系统代写,比如centos就是/etc/centos-release centos release 6.7 (final)
下一篇: linux下怎么找到某些命令出自于哪个包