是否可以在Ubuntu ubuntu-20.04.2.0-desktop-amd64上安装Proxmox?
这篇文章正在使用Debian10buster,但是我想知道它在Ubuntu20.04上是否也是可能的。
我已经尝试运行以下步骤:
echo "deb http://download.proxmox.com/debian/pve buster pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
apt update
apt install proxmox-ve postfix open-iscsi在此之后,我将丢失依赖项:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
proxmox-ve : Depends: pve-manager but it is not going to be installed
Depends: pve-qemu-kvm but it is not going to be installed
Depends: qemu-server but it is not going to be installed
Depends: spiceterm but it is not going to be installed
Depends: vncterm but it is not going to be installed
E: Unable to correct problems, you have held broken packages.提前谢谢。
发布于 2021-08-10 16:08:52
不支持在Ubuntu上安装Proxmox。
Proxmox是基于Debian,依赖于各自Debian版本中可用的包。虽然在错误消息中不清楚,但您提到的是
在此之后,我将丢失依赖项。
正是由于Ubuntu和Debian中不同的包,或者更确切地说,是包版本不同,所以我会这样想。
Proxmox的安装ISO包括一个完整的Debian系统以及Proxmox包(您可以在download.proxmox.com上获得)。因此,您可以在系统上安装普通Debian (但不是Ubuntu),并在系统上安装Proxmox。关于如何在公共Proxmox wiki上实现这一点,有一个指南。
但是,值得注意的是,Proxmox附带的内核是基于Ubuntu的。由于它比Debian内核更新,这使得新的硬件可用。
https://stackoverflow.com/questions/66626642
复制相似问题