如何透過命令列(cli)取得proxmox伺服器的作業系統版本?

如何透過命令列(cli)取得proxmox伺服器的作業系統版本?

如何檢查我的伺服器正在運行哪個版本的 Proxmox?

維基百科告訴我 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 伺服器的作業系統版本?

答案1

您可以使用指令來取得 proxmox 的版本pveversion

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

欲了解更多信息,請使用--verbose標誌

pveversion --verbose

相關內容