Linux

如何通過命令行 (cli) 獲取 proxmox 伺服器的作業系統版本?

  • December 18, 2020

如何檢查我的伺服器執行的 Proxmox 版本?

Wikipedia告訴我 Proxmox 在 Ubuntu LTS 的修改版本上執行

它是一個基於 Debian 的 Linux 發行版,帶有經過修改的 Ubuntu LTS 核心

但是,當我/etc/issue按預期檢查基於 Debian 的版本時,我只看到以下內容:

host:~# cat /etc/issue

------------------------------------------------------------------------------

Welcome to the Proxmox Virtual Environment. Please use your web browser to
configure this server - connect to:

 https://192.168.0.5/

------------------------------------------------------------------------------

host:~#

如何使用命令行實際確定我的 proxmox 伺服器的作業系統版本?

pveversion您可以使用該命令獲取 proxmox 的版本。

host:~# pveversion
pve-manager/6.2-6/ee1d7754 (running kernel: 5.4.41-1-pve)
host:~# 

有關更多資訊,請使用--verbose標誌

pveversion --verbose

引用自:https://serverfault.com/questions/1046737