如何检查我的服务器正在运行的Proxmox版本?
维基百科告诉我,Proxmox运行在Ubuntu的修改版本上。
它是一个基于Debian的Linux发行版,带有修改后的Ubuntu LTS内核。
但是,当我按预期使用基于Debian的发行版检查/etc/issue
时,我只看到以下内容:
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服务器的OS版本?
发布于 2020-12-18 10:27:36
您可以使用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
复制相似问题