Use the default apt update source of proxmox ve. After clicking “Refresh” on the web update management panel, an error will be displayed. At this time, because the default update source is the subscription of proxmox ve Enterprise Edition, if we do not purchase the subscription, we will prompt the signature error, which makes the apt update fail. The solution is very simple. Just replace the software source. Proxmox officially provides sources corresponding to different versions, which can be selected according to your own situation.
The principle of the three solutions found online is to replace the software source. The three methods are:
Method 1:
vim /etc/apt/sources.list.d/pve-enterprise.list
Note out:
# deb https://enterprise.proxmox.com/debian/pve stretch pve-enterprise
then:
echo "deb http://download.proxmox.com/debian/pve stretch pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
Method 2:
Edit sources.list and enter the following command:
nano /etc/apt/sources.list
Add at the bottom after opening:
deb http://download.proxmox.com/debian buster pve-no-subscription
Then press Ctrl + O to save and Ctrl + X to exit.
Edit pve-enterprise.list and enter the following command:
nano /etc/apt/sources.list.d/pve-enterprise.list
Comment out deb https://enterprise.proxmox.com/debian/pve buster pve-enterprise
Then save and exit.
Method 3:
Back up the original sources.list
cp /etc/apt/sources.list /etc/apt/sources.list.bak
Replace the contents of sources.list with the following official non feeds
deb http://ftp.debian.org/debian buster main contrib deb http://ftp.debian.org/debian buster-updates main contrib # PVE pve-no-subscription repository provided by proxmox.com, # NOT recommended for production use deb http://download.proxmox.com/debian/pve buster pve-no-subscription # security updates deb http://security.debian.org buster/updates main contrib
Comment out the original URL in /etc/apt/sources.list.d/pve-enterprise.list
# deb https://enterprise.proxmox.com/debian/pve buster pve-enterpris
Then execute the following command to upgrade normally.
apt update && apt dist-upgrade
After the upgrade, reboot and restart the physical server, execute pveversion – V to check the latest software version.
Similar Posts:
- Docker-compose up -d nginx Error: Unable to find expected entry… [How to Solve]
- Linux Error: apt-get 404 not found [How to Solve]
- OMV openmediavault update management error: software source https://download.docker.com/linux/debian/ Buster’s option signed by contains conflicting value solutions
- Foxmail configuration Netease enterprise mailbox – err unable to log on solution
- [Solved] Ubuntu sudo apt-get update Warning: Failed to fetch
- System update error: no_PUBKEY [How to Solve]
- [Solved] PHP Compile error: error adding symbols: DSO missing from command line
- Ubuntu Error: E: “cdrom://Ubuntu 18.04.5 LTS _Bionic Beaver_ – Release amd64 (20200806.1) bionic Release” E: “http://ppa.launchpad.net/zarquon42/meshlab/ubuntu bionic Release”
- Maven: idea cannot download the source code Issue [How to Solve]
- Opencv learning notes 05 face detection and recognition attributeerror: module ‘CV2’ has no attribute ‘face’