Ways to Check Linux OS Version in Command Line

๊ถ๊ธˆํ•ด์„œ ๊ธ‰ ์ฐพ์•„๋ด„

Linux Kernel version ํ™•์ธ

: Linux Kernel version์€ /proc/version์—์„œ ๊ด€๋ฆฌ๋˜๊ณ  ์žˆ๋‹ค

$ cat /proc/version
Linux version 3.10.0-957.21.3.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) ) #1 SMP Tue Jun 18 16:35:19 UTC 2019

ํ˜„์žฌ kernel version ํ™•์ธ

  • ์ƒ์„ธ ์ •๋ณด๋Š” -a option์„ ์‚ฌ์šฉํ•œ๋‹ค

$ uname -r
3.10.0-957.21.3.el7.x86_64

$ uname -a
Linux 3.10.0-957.21.3.el7.x86_64 #1 SMP Tue Jun 18 16:35:19 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

Linux Distro version ํ™•์ธ

: Distro version ํ™•์ธ ๋ฐฉ๋ฒ•์€ ๊ฐ distro๋งˆ๋‹ค ๋‹ค๋ฅด๋‹ค

CentOS / RedHat Enterprise

# cat /etc/redhat-release
CentOS release 6.3 (Final)

Ubuntu

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS"

Debian

$ cat /etc/debian_version
4.0

Fedora

cat /etc/fedora-release

Last updated