怎么查看自己linux系统属于centOS几?
时间: 2023-07-30 21:11:36 浏览: 130
可以使用以下命令来查看当前Linux系统的版本信息:
```
cat /etc/centos-release
```
如果你的系统不是CentOS,可能需要使用其他命令,例如:
Ubuntu:
```
lsb_release -a
```
Debian:
```
cat /etc/debian_version
```
Red Hat Enterprise Linux:
```
cat /etc/redhat-release
```
阅读全文