查看Linux系统是centos还是ubuntu的方法

前言

本文主要讲述如何查看Linux系统是centos还是ubuntu的4种方法。

常用Linux系统分两大类:
RedHat系列:主要有Redhat、Centos、Fedora等
Debian系列:Debian、Ubuntu等

总结4种区分centos和ubuntu的方法

1、lsb_release -a

使用lsb_release -a命令可以列出你的Linux系统是哪个Linux发行版,还可以列出具体是第几个版本。

2、cat /etc/redhat-release && cat /etc/lsb-release

redhat或centos对应命令:cat /etc/redhat-release
ubuntu对应命令:cat /etc/lsb-release

3、apt-get && yum

centos对应命令:yum -help
ubuntu对应命令:apt-get --help

4、cat /etc/issue

有Ubuntu字样为ubuntu,没有则是centos

(完)

none
最后修改于:2023年11月18日 01:02

添加新评论