背景
项目使用的linux系统如下, 默认安装的gcc 版本是8.3.0:
$ cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
$ gcc -v
Thread model: posix
gcc version 8.3.0 (Debian 8.3.0-6)
问题
项目编译为了更好的视频信创国产机,需要将gcc版本降级到5.4.0版本,考虑的方案是/etc/apt/sources.list
源增加 jessie 的deb源,进行安装低版本的gcc;
在sources.list
中增了jessie 源后,apt-get updae
出现了如下错误:
# apt-get update
W: GPG error: **** jessie-updates InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY ********** NO_PUBKEY ************
解决方案:
- 去官网的服务器获取相应的公钥
$ gpg --keyserver keyring.debian.org --recv-keys **********
- 将获得的公钥添加到系统密钥列表
gpg -a --export ********** | sudo apt-key add -
- 其他公钥获取服务器(不同网络可能需要连接不同的服务器)
keyring.debian.org
keyserver.ubuntu.com
pgp.mit.edu
subkeys.pgp.net
www.gpg-keyserver.de
其他
apt-cache 命令
国内软件源镜像:清华大学软件源