Tag: cli

Finding your linux version
Useful CLI commands that I’ve compiled in order to determine which flavor/version of Linux I’m running. Kernel: uname -r Distro: lsb_release -a Prints certain system information usually related to the kernel (-a is the ALL switch).
1 |
uname -a |
Output:
1 2 |
[/dev] # uname -a Linux BACKUP01 3.4.6 #1 SMP Tue Feb 17 04:58:58 CST 2015 x86_64 unknown |
You can cat the /proc/version file:
1 |
cat /proc/version |
Output:
1 2 |
[/dev] # cat /proc/version Linux version 3.4.6 (root@NasX86Builder) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)) #1 SMP Tue Feb 17 04:58:58 CST 2015 |
cat the […]