blob: c1a80f89fae8654602620a66d833459597598c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
## Name
uname - print kernel information
## Synopsis
```**sh
$ uname [-s] [-n] [-r] [-m] [-a]`
```
## Description
Print information about the operating system, as reported by the `uname()`
system call.
## Options
* `-s`: Print the system name
* `-n`: Print the node name (hostname)
* `-r`: Print the system release version
* `-m`: Print the machine type
* `-a`: Print all of the above
## Examples
```sh
$ uname -sm
Serenity i686
```
## See also
* [`uname`(2)](help://man/2/uname)
|