サーバーを何台も管理していると、OSのバージョン、アーキテクチャが分からなくなってしまいます。
この頃はカーネルよりもディストリビューションのバージョンを確認する事が多いのでメモしておきます。
CentOSのバージョンを確認するコマンド
# cat /etc/redhat-release # CentOS6 の場合 CentOS release 6.8 (Final) # CentOS7 の場合 CentOS Linux release 7.2.1511 (Core)
CentOSのアーキテクチャを確認するコマンド
# arch # 64bit の場合 X86_64 # 32bit の場合 i686