命令 uname 用于电脑以及操作系统信息
2020-09-24 08:27:18
卿卿小孩
13
在linux系统中,命令 uname 用于电脑以及操作系统信息
语法:
uname [-amnrsv] [--help] [--version]
参数说明:
-a或--all 显示全部的信息。
-m或--machine 显示电脑类型。
-n或-nodename 显示在网络上的主机名称。
-r或--release 显示操作系统的发行编号。
-s或--sysname 显示操作系统名称。
-v 显示操作系统的版本。
--help 显示帮助。
--version 显示版本信息。
案例:
显示系统信息
[root@VM_0_5_centos ~]# uname -a Linux VM_0_5_centos 3.10.0-862.el7.x86_64 #1 SMP Fri Apr 20 16:44:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
显示计算机类型
[root@VM_0_5_centos ~]# uname -m x86_64
显示计算机名
[root@VM_0_5_centos ~]# uname -n VM_0_5_centos
显示操作系统发行编号
[root@VM_0_5_centos ~]# uname -r 3.10.0-862.el7.x86_64
显示操作系统名称
[root@VM_0_5_centos ~]# uname -s Linux
显示系统版本与时间
[root@VM_0_5_centos ~]# uname -v #1 SMP Fri Apr 20 16:44:24 UTC 2018
查看uname帮助信息
[root@VM_0_5_centos ~]# uname --help Usage: uname [OPTION]... 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: -s, --kernel-name print the kernel name -n, --nodename print the network node hostname -r, --kernel-release print the kernel release -v, --kernel-version print the kernel version -m, --machine print the machine hardware name -p, --processor print the processor type or "unknown" -i, --hardware-platform print the hardware platform or "unknown" -o, --operating-system print the operating system --help display this help and exit --version output version information and exit GNU coreutils online help: For complete documentation, run: info coreutils 'uname invocation'
查看 uname 版本号
[root@VM_0_5_centos ~]# uname --version uname (GNU coreutils) 8.22 Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by David MacKenzie.