如何檢查 Ubuntu 的版本
-
使用
lsb_release
命令檢查 Ubuntu 版本 -
使用
/etc/issue
檔案檢查 Ubuntu 版本 -
使用
/etc/os-release
檔案檢查 Ubuntu 版本 -
使用
hostnamectl
命令檢查 Ubuntu 版本 - 使用 Gnome 檢查 Ubuntu 版本
我們可以通過終端的 lsb-release
和 hostnamectl
命令來檢查系統中安裝的 Ubuntu 版本。我們也可以通過檢查 etc
檔案來了解 Ubuntu 的版本,也可以通過 Gnome
來查詢。
使用命令列檢查 Ubuntu 版本的方法有很多。其中一些方法是
使用 lsb_release
命令檢查 Ubuntu 版本
這個方法適用於任何版本的 Ubuntu。lsb_release
命令列實用程式可以顯示 Linux 發行版的 Linux 標準庫(LSB)資訊。
我們使用 lsb_release -a
命令來顯示我們系統中安裝的 Ubuntu 的資訊。
lsb_release -a
輸出:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.4 LTS
Release: 18.04
Codename: bionic
它將列印我們系統中安裝的 Ubuntu 的資訊。
從描述中可以看出,我們系統中安裝的 Ubuntu 版本是 18.04.4 LTS
。
如果我們只想知道 Ubuntu 的版本,我們可以使用 lsb_release -d
命令只顯示描述行。
lsb_release -d
輸出:
Description: Ubuntu 18.04.4 LTS
使用 /etc/issue
檔案檢查 Ubuntu 版本
/etc/issue
檔案包含了 Ubuntu 的系統識別細節。該檔案的內容可以用 cat
命令顯示。
cat /etc/issue
輸出:
Ubuntu 18.04.4 LTS \n \l
顯示安裝的 Ubuntu 的版本是 18.04.4,而 LTS
代表 Long Term Support
版本。
使用/etc/os-release
檔案檢查 Ubuntu 版本
/etc/os-release
檔案包含了系統作業系統的詳細資訊。該檔案的內容可以通過 cat
命令來顯示。
但是,這種方法只適用於 Ubuntu 16.04
及以後的版本。
cat /etc/os-release
輸出:
NAME="Ubuntu"
VERSION="18.04.4 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.4 LTS"
VERSION_ID="18.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=bionic
UBUNTU_CODENAME=bionic
顯示安裝的 Ubuntu 的版本是 18.04.4
。
使用 hostnamectl
命令檢查 Ubuntu 版本
hostnamectl
是設定系統主機名的命令列工具。它還可以檢查我們系統中安裝的 Ubuntu 版本。
它只適用於 Ubuntu 16.04 或更高版本。
hostnamectl
輸出:
Static hostname: zeppy-G7-7588
Icon name: computer-laptop
Chassis: laptop
Machine ID: dc64e42ca570453db4294738fe976109
Boot ID: 8f4e5173ef214acba4dbe3cb65d2363b
Operating System: Ubuntu 18.04.4 LTS
Kernel: Linux 5.4.0-42-generic
Architecture: x86-64
它顯示我們系統中 Ubuntu 的版本是 18.04.4 LTS
。
使用 Gnome 檢查 Ubuntu 版本
Gnome 是 Ubuntu 18.04 的預設桌面環境。Ubuntu 的早期版本使用 Unity 作為預設桌面環境。
要檢查使用 Gnome 的 Ubuntu 版本,我們執行以下步驟。
-
點選
Settings
圖示,開啟設定視窗。 -
點選設定視窗中的
Details
標籤。 -
現在 Ubuntu 版本顯示在標誌下。
Suraj Joshi is a backend software engineer at Matrice.ai.
LinkedIn