准备PVE安装U盘
在PVE官网下载最新系统ISO映像:下载页 并使用UltraISO刻录到U盘(Rufus写的盘无法启动)。
安装PVE系统
Bios设置U盘启动,跟随安装向导默认安装即可,网上资料很多,此处不再赘述。
配置PVE
去除企业版源
此源针对付费企业用户,不注释会导致apt环境错误
1 | echo "#deb https://enterprise.proxmox.com/debian/pve bullseye pve-enterprise" > /etc/apt/sources.list.d/pve-enterprise.list |
系统源更换
阿里Debian源:
1 | sed -i.bak "s#ftp.debian.org/debian#mirrors.aliyun.com/debian#g" /etc/apt/sources.list #阿里Debian源 |
去除登录订阅弹窗
1 | sed -Ezi.bak "s/(Ext.Msg.show\(\{\s+title: gettext\('No valid sub)/void\(\{ \/\/\1/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service |