add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

36
pages.zh/linux/uname.md Normal file
View File

@@ -0,0 +1,36 @@
# uname
> Uname 打印出运行它的机器和操作系统的信息。
> 更多信息:<https://www.gnu.org/software/coreutils/manual/html_node/uname-invocation.html>。
- 打印所有信息:
`uname --all`
- 打印当前内核名称:
`uname --kernel-name`
- 打印当前网络节点主机名:
`uname --nodename`
- 打印当前内核版本:
`uname --kernel-release`
- 打印当前内核版本号:
`uname --kernel-version`
- 打印当前机器硬件名称:
`uname --machine`
- 打印当前处理器类型:
`uname --processor`
- 打印当前操作系统名称:
`uname --operating-system`