说明
由于 PVE 7.0 更换了 Debian 11 作为内核,软件源管理方式也发生了变化,因此原软件源配置方法已失效。
默认情况下是企业订阅版,如果不进行修改,在使用 pveceph init 进行 ceph 初始化安装时会破坏整个环境,请注意!
- 登录各节点 Shell 控制台
- **【重要】****将/etc/apt/sources.list.d/pve-enterprise.list 文件内的唯一一条记录注释掉:
1
| echo "#deb <https://enterprise.proxmox.com/debian/pve> bullseye pve-enterprise" > /etc/apt/sources.list.d/pve-enterprise.list
|
Proxmox 软件源更换
中科大源(二选一):
1 2 3 4 5 6 7 8 9
| wget <https://mirrors.ustc.edu.cn/proxmox/debian/proxmox-release-bullseye.gpg> -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
echo "deb <https://mirrors.ustc.edu.cn/proxmox/debian/pve> bullseye pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list #中科大源
echo "deb <https://mirrors.ustc.edu.cn/proxmox/debian/ceph-pacific> bullseye main" > /etc/apt/sources.list.d/ceph.list #中科大源
sed -i.bak "s#<http://download.proxmox.com/debian#https://mirrors.ustc.edu.cn/proxmox/debian#g>" /usr/share/perl5/PVE/CLI/pveceph.pm #中科大源
apt update && apt dist-upgrade #更新软件,可不执行
|
Proxmox 中文社区源(二选一):
1 2 3 4 5 6 7 8 9
| wget <http://download.proxmox.wiki/debian/proxmox-release-bullseye.gpg> -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
echo "deb <http://download.proxmox.wiki/debian/pve> bullseye pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list #Proxmox中文社区源
echo "deb <https://download.proxmox.wiki/debian/ceph-pacific> bullseye main" > /etc/apt/sources.list.d/ceph.list #Proxmox中文社区源
sed -i.bak "s#<http://download.proxmox.com/debian#https://download.proxmox.wiki/debian#g>" /usr/share/perl5/PVE/CLI/pveceph.pm #Proxmox中文社区源
apt update && apt dist-upgrade #更新软件,可不执行
|
Debian 系统源更换
阿里 Debian 源(二选一):
1 2 3 4 5
| sed -i.bak "s#ftp.debian.org/debian#mirrors.aliyun.com/debian#g" /etc/apt/sources.list #阿里Debian源
sed -i "s#security.debian.org#mirrors.aliyun.com/debian-security#g" /etc/apt/sources.list #阿里Debian源
apt update && apt dist-upgrade #更新软件,可不执行
|
163-Debian 源(二选一):
1 2 3 4 5
| sed -i.bak "s#ftp.debian.org/debian#mirrors.163.com/debian#g" /etc/apt/sources.list #163Debian源
sed -i "s#security.debian.org#mirrors.163.com/debian-security#g" /etc/apt/sources.list #163Debian源
apt update && apt dist-upgrade #更新软件,可不执行
|
删除订阅弹窗
1 2 3
| 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
# 执行完成后,浏览器Ctrl+F5强制刷新缓存
|