Commit 158e582db133b6e7ecb10c98b8cd84a598ce53ff

Authored by 徐烜
1 parent 4f75605d

Updates 01_basic/linux.md

Auto commit by GitBook Editor
Showing 1 changed file with 11 additions and 0 deletions
01_basic/linux.md
1 1 # linux版本信息
2 2  
  3 +### 确认linux版本,建议安装在Centos7上
3 4  
  5 +```
  6 +//---------- 查看linux版本号 ----------//
  7 +// 查看当前版本发行日期
  8 +uname -a
  9 +// 查看linux内核版本,包括gcc版本
  10 +cat /proc/version
  11 +// 查看linux发行版本
  12 +cat /etc/centos-release
  13 +
  14 +```
... ...