内核版本/系统版本信息

最后更新于:2022-04-02 03:48:02

[TOC] ## 实例 ### 查看Linux内核版本命令(两种方法): ``` > uname -a > Linux bigant-PC 4.19.0-arm64-desktop #1825 SMP Thu Sep 3 15:15:48 CST 2020 aarch64 GNU/Linux ``` ### 查看Linux系统版本的命令(3种方法): ``` // 即可列出所有版本信息 > lsb_release -a No LSB modules are available. Distributor ID: Uos Description: UnionTech OS Desktop 20 Pro Release: 20 // 只适合Redhat系的Linux > cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) // 适用于所有的Linux发行版 > cat /etc/issue UnionTech OS GNU/Linux 20 \n \l ```
';