热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

Debian中使用apt-getupdate出现NO_PUBKEY解决方法

Debian中使用apt-getupdate出现NO_PUBKEY解决方法--Linux发行版技术-Debian信息,下面是详情阅读。
在使用apt-get update 更新时提示

W: GPG error: http://ftp.debian-unofficial.org etch Release: The following
signatures couldn't be verified because the public key is not available:
NO_PUBKEY D5642BC86823D007
W: You may want to run apt-get update to correct these problems

出现上叙问题是由于没有公钥,http://ftp.debian-unofficial.org 的签名无法进行验证!只要重新导入公钥即可!

gpg --keyserver subkeys.pgp.net --recv-keys D5642BC86823D007

gpg --export D5642BC86823D007 | apt-key add -

编写一个脚本处理此问题

#!/bin/sh
if [ !# -eq 0 ]
then
echo usage: $0 keys
exit 1
fi

gpg --keyserver subkeys.pgp.net --recv-keys $1

gpg --export $1| apt-key add -
推荐阅读
author-avatar
Sunshine丶米粉_499
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有