uname is a program that prints the name, version and other details about the current machine and the operating system running on it.
Usage
All the commands work in terminal
Check man uname in terminal for complete documentation of the program. Check this link for more details
Usage
All the commands work in terminal
- uname -a or uname --all print all information
- uname -s or uname --kernel-name print the kernel name
- uname -n or uname --nodename print the network node hostname
- uname -r or uname --kernel-release print the kernel release
- uname -v or uname --kernel-version print the kernel version
- uname -m or uname --machine print the machine hardware name
- uname -p or uname --processor print the processor type
- uname -i or uname --hardware-platform print the hardware platform
- uname -o or uname --operating-system print the operating system
- uname --help display this help and exit
- uname --version output version information and exit
Check man uname in terminal for complete documentation of the program. Check this link for more details