【开发日常】-- 查看Linux发行版本
程序员文章站
2022-07-06 20:33:06
...
我们常常在网上找资料的时候,发现别人使用的配置方式/配置文件在我们这边都不适用。
原因是不同发行版本Linux其内部的各个配置方式是不一样的,
如果不知道使用的是哪一个发行版本的系统,在软件安装/系统配置的时候就会无从下手,
因此在刚接触一台新服务器的时候,需要先确认它的发行版本,
这样更容易找到与这个发行版本相对应的相关配置流程与方式。
当前Linux的发行版本:
Ubuntu CentOS Debian Fedora Slackware
Mint Xubuntu Arch OpenSUSE Red Hat
Slackel PureOS Mageia PCLinuxOS Puppy
Zorin BunsenLabs Kubuntu Manjaro Bodhi
Netrunner Neptune Kali Black Lab Solus
方法:cat /etc/os-release
注:不同的发行版本,查看的方式也不同
rhel系统 /etc/redhat-release
centos系统 cat /etc/centos-release
fedora系统 cat /etc/fedora-release
[[email protected] linux-3.10.0]$ cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
[[email protected] linux-3.10.0]$ cat /etc/centos-release
CentOS Linux release 7.2.1511 (Core)
下一篇: 实验-流动墨迹速度感知实验数据分析