Linux 内核系统 版本信息 获取
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 内核系统 版本信息 获取相关的知识,希望对你有一定的参考价值。
1、查看内核
## 通过读取 /proc/version 文件,获取内核版本信息
# cat /proc/version
## 直接通过 uname命令 获取内核信息
# uname -r
2、查看系统版本
## lsb_release 命令查看
## lsb_release -a 查看系统所有信息
## lsb_release -sc 只查看系统版本发行号
# lsb_release -a
# lsb_release -sc
## 读取 /etc/issue 文件,获取系统版本信息,适用于所有的Linux发行版
# cat /etc/issue
## 读取 /etc/redhat-release 文件,获取系统版本信息,只适合Redhat系的Linux
# cat /etc/redhat-release
以上是关于Linux 内核系统 版本信息 获取的主要内容,如果未能解决你的问题,请参考以下文章