I am having issues when running apt update with being unable to update one of the repos.
Output:
I saw the documentation seems to have a solution for this of running
However I believe that "apt-key" is deprecated at this time so I used the following
However I am still having the issue and I was hoping someone would be able to give some advice.
Output:
Code:
root@proxmox:~# apt update
Hit:1 http://security.debian.org bookworm-security InRelease
Hit:2 http://ftp.us.debian.org/debian bookworm InRelease
Ign:3 http://download.proxmox.com/debian wheezy InRelease
Hit:4 http://download.proxmox.com/debian/ceph-reef bookworm InRelease
Hit:5 http://ftp.us.debian.org/debian bookworm-updates InRelease
Get:6 http://download.proxmox.com/debian wheezy Release [3,083 B]
Get:7 http://download.proxmox.com/debian wheezy Release.gpg [181 B]
Ign:7 http://download.proxmox.com/debian wheezy Release.gpg
Reading package lists... Done
W: GPG error: http://download.proxmox.com/debian wheezy Release: The following signatures were invalid: BE257BAA5D406D01157D323EC23AC7F49887F95A
E: The repository 'http://download.proxmox.com/debian wheezy Release' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
I saw the documentation seems to have a solution for this of running
Code:
wget -O- "http://download.proxmox.com/debian/key.asc" | apt-key add -
Code:
wget -qO- http://download.proxmox.com/debian/key.asc | sudo tee /etc/apt/trusted.gpg.d/myrepo.asc
However I am still having the issue and I was hoping someone would be able to give some advice.