radxa / apt

radxa debian packages repository
http://radxa.com/Rabian
35 stars 6 forks source link

Focal stable repository gone? #47

Closed FlixCoder closed 1 year ago

FlixCoder commented 1 year ago

apt update is failing because:

E: The repository 'http://apt.radxa.com/focal-stable focal Release' no longer has a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.

http://apt.radxa.com/focal-stable/ is just a 404, is this normal?

Vladislav-Ilcheff commented 1 year ago

+1 on this one. Missing Debian buster/bullseye

daynekemp commented 1 year ago

+1

RadxaStephen commented 1 year ago

Hi, all packages are added and signed with new key.

Please check it again.

Vladislav-Ilcheff commented 1 year ago

It's working again. Thanks Stephen!

FlixCoder commented 1 year ago

I get this now:

  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9B98116C9AA302C7
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be
used. GPG error: http://apt.radxa.com/focal-stable focal InRelease: The following
signatures couldn't be verified because the public key is not available: NO_PUBKEY 9B98116C9AA302C7
W: Failed to fetch http://apt.radxa.com/focal-stable/dists/focal/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9B98116C9AA302C7
W: Some index files failed to download. They have been ignored, or old ones used instead.

How do I fix this?

RadxaStephen commented 1 year ago

Try this.

sudo apt-get install -y wget
export DISTRO=focal-stable
wget -O - apt.radxa.com/$DISTRO/public.key | sudo apt-key add -
sudo apt-get update
FlixCoder commented 1 year ago

Thanks, this works!