Linux 查看系统是 CentOS 还是 ubuntu
lsb_release -a
命令可以列出你的Linux系统是哪个Linux发行版,它还可以列出具体是第几个版本。- ubuntu 有这个命令。
- centos 没有这个命令。
cat /etc/redhat-release && cat /etc/lsb-release
- radhat或centos会有
/etc/redhat-release
这个文件。 - ubuntu 会与
/etc/lsb-release
这个文件。
- radhat或centos会有
apt-get && yum
- 有yum的就是Centos:
yum -help
。 - 有apt-get的就是Ubuntu:
apt-get -help
。
- 有yum的就是Centos:
cat /etc/issue
- 有Ubuntu字样为ubuntu,没有则是centos。
Linux 查看系统是 CentOS 还是 ubuntu
https://flepeng.github.io/002-Linux-Linux-查看系统是-CentOS-还是-ubuntu/