多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[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 ```