0


如何查看Linux系统是Ubuntu还是Centos

文章目录

查看linux是centos还是ubuntu的方法

以下总结了4种区分centos和ubuntu系统的方法。

1、lsb_release -a

如果是想查看你的Linux系统是Ubuntu还是CentOS,可以使用lsb_release -a命令,lsb_release -a命令可以列出你的Linux系统是哪个Linux发行版,它还可以列出具体是第几个版本。

lsb_release -a

在这里插入图片描述

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

radhat或centos存在: /etc/redhat-release 这个文件

/etc/redhat-release

ubuntu存在 : /etc/lsb-release 这个文件

/etc/lsb-release

在这里插入图片描述

3、apt-get && yum

有yum的就是Centos

yum -help

有apt-get的就是Ubuntu

apt-get-help

在这里插入图片描述

4、cat /etc/issue

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

cat /etc/issue

在这里插入图片描述

标签: linux ubuntu centos

本文转载自: https://blog.csdn.net/weixin_45525272/article/details/137783252
版权归原作者 呆萌宝儿姐 所有, 如有侵权,请联系我们删除。

“如何查看Linux系统是Ubuntu还是Centos”的评论:

还没有评论