Last Updated on 10/12/2023 by administrator
Jak zjistit verzi Linuxu (How to check Linux Version)
Jak zjistit verzi Linuxu (How to check Linux Version)
Motivace:
Tento článek popisuje různé příkazy, kterými lze vypsat verzi linuxu na různých distribucích.
Implementace:
1. Příkaz cat /etc/os-release lze použít minimálně na distribucích Debian-based a RHEL-based:
cat /etc/os-release
nebo alternativně:
cat /etc/*release
Výpis cat /etc/os-release příkazu:
NAME="CentOS Stream" VERSION="9" ID="centos" ID_LIKE="rhel fedora" VERSION_ID="9" PLATFORM_ID="platform:el9" PRETTY_NAME="CentOS Stream 9" ANSI_COLOR="0;31" LOGO="fedora-logo-icon" CPE_NAME="cpe:/o:centos:centos:9" HOME_URL="https://centos.org/" BUG_REPORT_URL="https://bugzilla.redhat.com/" REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream"
2. Příkaz hostnamectl lze použít minimálně na distribucích Debian-based a RHEL-based:
hostnamectl
Výpis hostnamectl příkazu:
Static hostname: DaloRadius Icon name: computer-container Chassis: container Machine ID: 92ff73a0ab6a434e977184655ac37339 Boot ID: c7d59e9529b44977bed8a85d4dec24de Virtualization: lxc Operating System: Ubuntu 22.04.3 LTS Kernel: Linux 5.15.116-1-pve Architecture: x86-64
3. Příkaz cat /etc/issue lze použít minimálně na distribucích Debian-based:
cat /etc/issue
Výpis cat /etc/issue příkazu:
Debian GNU/Linux 12 \n \l
4. Příkaz lsb_release -a lze použít minimálně na distribucích Debian-based:
lsb_release -a
Výpis lsb_release -a příkazu:
No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04.3 LTS Release: 22.04 Codename: jammy
Zdroj:
[1] https://linuxize.com/post/how-to-check-linux-version/
[2] https://vakypytle.cz/how-to-tell-what-distro-and-version-of-linux-you-are-running