Added uname cheatsheet

This commit is contained in:
Florent Munch 2013-09-15 00:57:06 +02:00
parent 71e9f11e83
commit 9f182d684d
1 changed files with 27 additions and 0 deletions

27
cheatsheets/uname Normal file
View File

@ -0,0 +1,27 @@
# Print all system information
uname -a
# Linux system-hostname 3.2.0-4-amd64 #1 SMP Debian 3.2.32-1 x86_64 GNU/Linux
# Print the hostname
uname -n
# system-hostname
# Print the kernel release
uname -r
# 3.2.0-4-amd64
# Print the kernel version
uname -v
# #1 SMP Debian 3.2.32-1
# Print the hardware instruction set
uname -m
# x86_64
# Print the kernel name
uname -s
# Linux
# Print the operating system
uname -o
# GNU/Linux