概要
定番のOSバージョン情報とカーネル情報の確認方法。
書式
# OSのバージョン情報表示
cat /etc/os-release
# カーネル・システム情報表示
uname -a
実行例
$ cat /etc/os-release
NAME="Rocky Linux"
VERSION="9.1 (Blue Onyx)"
ID="rocky"
ID_LIKE="rhel centos fedora"
VERSION_ID="9.1"
PLATFORM_ID="platform:el9"
PRETTY_NAME="Rocky Linux 9.1 (Blue Onyx)"
ANSI_COLOR="0;32"
LOGO="fedora-logo-icon"
CPE_NAME="cpe:/o:rocky:rocky:9::baseos"
HOME_URL="https://rockylinux.org/"
BUG_REPORT_URL="https://bugs.rockylinux.org/"
ROCKY_SUPPORT_PRODUCT="Rocky-Linux-9"
ROCKY_SUPPORT_PRODUCT_VERSION="9.1"
REDHAT_SUPPORT_PRODUCT="Rocky Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="9.1"
$ uname -a
Linux hogehoge.com 5.14.0-162.18.1.el9_1.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Mar 1 22:02:24 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
オプション(–help)
$ uname --help
使用法: uname [OPTION]...
システム情報を表示します。 OPTION が指定されていない場合は -s と同じです。
-a, --all 以下の順番でシステム情報を全て表示する (ただし -p
と -i が unknown の場合は省略される):
-s, --kernel-name カーネル名を表示する
-n, --nodename ネットワークノードとしてのホスト名を表示する
-r, --kernel-release カーネルリリース番号を表示する
-v, --kernel-version print the kernel version
-m, --machine print the machine hardware name
-p, --processor print the processor type (non-portable)
-i, --hardware-platform print the hardware platform (non-portable)
-o, --operating-system print the operating system
--help この使い方を表示して終了する
--version バージョン情報を表示して終了する
GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
Report any translation bugs to <https://translationproject.org/team/>
Full documentation <https://www.gnu.org/software/coreutils/uname>
or available locally via: info '(coreutils) uname invocation'