Com o GNU uname
, uname -a
é a abreviação de uname -snrvmpio
:
$ uname -snrvmpio
Linux name 3.11.0-12-generic #19-Ubuntu SMP Wed Oct 9 16:20:46 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
$ for o (s n r v m p i o) {printf -$o:\ ; uname -$o}
-s: Linux
-n: name
-r: 3.11.0-12-generic
-v: #19-Ubuntu SMP Wed Oct 9 16:20:46 UTC 2013
-m: x86_64
-p: x86_64
-i: x86_64
-o: GNU/Linux
Com m
, -p
, -i
sendo:
-m, --machine print the machine hardware name -p, --processor print the processor type or "unknown" -i, --hardware-platform print the hardware platform or "unknown"