Proxmox VE - 开源虚拟化平台

因站长买的是N5095工控主板,默认是LVDS输出,U盘刻录安装时主屏显示为白屏,因此采用方法二,先安装Debian系统,然后安装PVE。

编辑hosts:

nano /etc/hosts
# 内容如下,192.168.1.XX替换为自己的IP,n5095替换为自己的主机名
127.0.0.1 localhost
192.168.1.XX n5095.proxmox.com n5095

验证设置是否配置正确:

hostname --ip-address

添加PVE库和密钥:

echo "deb [arch=amd64] https://mirrors.ustc.edu.cn/proxmox/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
wget https://mirrors.ustc.edu.cn/proxmox/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
apt update

安装PVE内核并重启:

apt install pve-kernel-6.2
reboot

安装PVE软件:

apt install proxmox-ve postfix open-iscsi chrony

删除Debian内核:

apt remove linux-image-amd64 'linux-image-6.1*'
update-grub

移除os-prober

apt remove os-prober
  • software/ops/proxmox.txt
  • 最后更改: 2024/08/31 14:12
  • ossdate