Archive for Month: September 2015

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 […]

Useful AIX 5.3 commands
Commands I’ve found using frequently. Change network adapter
1 |
smit mktcpip |
mktcpip1)http://www-01.ibm.com/support/knowledgecenter/P8DEA/p8hcg/p8hcg_mktcpip.htm can be used itself in CLI. HA! Only 1 command! Notes & References [ + ] 1. ↑ http://www-01.ibm.com/support/knowledgecenter/P8DEA/p8hcg/p8hcg_mktcpip.htm