有时候我们不清楚使用的Linux系统是ubuntu,centos等,想要查询Linux系统的信息。这时候可以使用uname命令。
一、uname命令
[root@localhost ~]
UNAME(1) User Commands UNAME(1)
NAME
uname - print system information
SYNOPSIS
uname [OPTION]...
DESCRIPTION
Print certain system information. With no OPTION, same as -s.
-a, --all
print all information, in the following order, except omit -p and -i if unknown:
uname 命令用于打印系统信息,使用 -a 参数可以查看 Linux版本信息。
二、使用
1.查看 ubuntu系统
如果当前 Linux系统是Ubuntu,就可以使用 uname 命令进行查询。命令如下:
root@ubuntu-GCP1820-SS:~$ uname -a
Linux ubuntu-GCP1820-SS 4.4.0-210-generic
roote@ubuntu-GCP1820-SS:~$
2.查看 CentOS 系统
对于 CentOS系统,uname 命令无法直观地查看系统信息。应该使用如下命令查询:
[root@localhost ~]
CentOS Linux release 7.2.1511 (Core)
[root@localhost ~]
|