The uname command

Yaser Rahmati | یاسر رحمتی

The uname command lets you print out system information and defaults to outputting the kernel name.

[root@academy /]# uname
Linux
[root@academy /]# uname -a
Linux academy 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
[root@academy /]# uname -s
Linux
[root@academy /]# uname -n
academy
[root@academy /]# uname -r
3.10.0-1160.el7.x86_64
[root@academy /]# uname -v
#1 SMP Mon Oct 19 16:18:59 UTC 2020
[root@academy /]# uname -m
x86_64
[root@academy /]# uname -p
x86_64
[root@academy /]# uname -i
x86_64
[root@academy /]# uname -o
GNU/Linux
[root@academy /]#

Options

Last updated