how to check version in Linux?
时间: 2024-01-28 11:05:11 浏览: 92
How to create an RPM package_zh-cn - Fedora Project Wiki.pdf
To check the version of Linux you are using, you can open a terminal and type in the following command:
```
lsb_release -a
```
This command will display information about your Linux distribution, including its version number. Alternatively, you can also use the following command:
```
cat /etc/os-release
```
This command will display information about your operating system, including the version number.
阅读全文