关于linux中uname -a的相关问题

[root@localhost yum.repos.d]# uname -a
Linux localhost.localdomain 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

我想弄清楚这行命令出来后,里面的#1 代表什么意思?这里面可以看出是什么操作系统么?

linux

$ 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 (non-portable)
-i, --hardware-platform print the hardware platform (non-portable)
-o, --operating-system print the operating system
--help display this help and exit
--version output version information and exit

可以用以上命令加参数对应各项内容说明。

用这个命令上只能看出是linux,看不出具体哪家哪个版本。
可以看/etc目录下的release文件。