查看 Debian 系统版本的方式

查看 Dibian 系统发行版本号的方式

1. 使用 lsb_release 命令

lsb_release 命令可用于查看 Linux 发行版操作系统的具体版本。它可能尚未安装在你的操作系统中,因此你需要先安装它。运行以下命令来安装 lsb_release:

 apt-get install lsb-release

安装完成之后,只需要输入下面的命令就可以查看到你当前系统的版本信息:

 lsb_release -a

你将看到类似下面的结果:

 No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 11 (bullseye)
Release: 11
Codename: bullseye

以上运行结果说明当前使用的操作系统版本是 Debian 11.

2. 查看 /etc/issue 文件

第二种查看当前 Debian 版本的方法是查看位于 /etc 目录中的 issue 文件。你可以使用 cat 命令查看文件的内容,输入下面的命令:

 cat /etc/issue

你将看到类似下面的结果:

 Debian GNU/Linux 11 \n \l

3. 查看 /etc/os-release 文件

/etc/os-release 是一个包含操作系统标识数据的文件,它只能在运行 systemd 的最新 Debian 发行版上找到。同样可以使用 cat 命令查看该文件的内容,输入下面的命令:

cat /etc/os-release

你将看到类似下面的结果:

 PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

如果想知道更具体的小版本号,可以查看 /etc/debian_version 文件,输入下面的命令:

 cat /etc/debian_version

你将看到类似下面的结果:

 11.4

4. 使用 uname 命令

uname 命令可以显示电脑以及操作系统的相关信息,输入下面的命令:

 uname -a

你将看到类似下面的结果:

 Linux baicai-l01 5.10.0-16-amd64 #1 SMP Debian 5.10.127-1 (2022-06-30) x86_64 GNU/Linux

5. 使用 hostnamectl 命令

hostnamectl 命令用于配置或修改系统的主机名,不过也使用此命令来获取 Debian 系统的版本,只需要直接输入 hostnamectl 即可:

 hostnamectl

你将看到类似下面的结果:

 Static hostname: baicai-l01
Icon name: computer-desktop
Chassis: desktop
Machine ID: xxx
Boot ID: xxx
Operating System: Debian GNU/Linux 11 (bullseye)
Kernel: Linux 5.10.0-16-amd64
Architecture: x86-64

文章来源:

Author:白菜
link:https://blog.baicai.me/article/2022/debian_version_check/