知其然,知其所以然
:proxmox有三种源,分别是pve-enterprise、pve-no-subscription、pvetest,pvetest是测试源,肯定是不建议使用的,pve-no-subscription源官方明确提到是不建议使用在生产环境(NOT recommended for production use),所以和pve-enterprise肯定还是有区别的,但是上面教程的升级方式只能是稳定版本升级,后续的BUG更新是没有的,针对个人用户,还是选择pve-no-subscription比较合适。
修改Proxmox更新源
Proxmox源含稳定源(PVE)和测试源(PVETEST)
nano /etc/apt/sources.list
内容如下:
deb http://ftp.debian.org/debian wheezy main contrib
# PVE packages provided by proxmox.com
deb http://download.proxmox.com/debian wheezy pve
# security updates
deb http://security.debian.org/ wheezy/updates main contrib
改成
deb http://ftp.debian.org/debian wheezy main contrib
# PVE packages provided by proxmox.com
deb http://download.proxmox.com/debian wheezy pvetest
# security updates
deb http://security.debian.org/ wheezy/updates main contrib
升级Proxmox
运行如下命令升级Proxmox
apt-get update
apt-get upgrade
apt-get dist-upgrade