Ubuntu W: GPG error: http://archive.ubuntukey....NO_PUBKEY 8D5A09

在用 sudo apt-get update 时出现这样的报错:

W: GPG error: http://archive.ubuntukylin.com:10006/ubuntukylin xenial InRelease: The following signatures couldn‘t be verified because the public key is not available: NO_PUBKEY 8D5A09DC9B929006

解决方案:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys <PUBKEY>

这里 <PUBKEY> 为8D5A09DC9B929006

然后再

sudo apt-get update

时间: 2024-08-06 19:51:31

Ubuntu W: GPG error: http://archive.ubuntukey....NO_PUBKEY 8D5A09的相关文章

W: GPG error: http://ppa.launchpad.net trusty InRelease: The following signatures couldn&#39;t be verified because the public key is not available: NO_PUBKEY 8CF63AD3F06FC659

报错信息: W: GPG error: http://ppa.launchpad.net trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 8CF63AD3F06FC659 解决: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8CF63AD

How to fix apt-get GPG error NO_PUBKEY Ubuntu 14

This morning when I do apt-get update on my new Ubuntu 14.04 server, I got these error messages: Reading package lists… Done W: GPG error: http://security.ubuntu.com trusty-security Release: The following signatures couldn’t be verified because the p

apt GPG error

W: GPG error: http://extras.ubuntu.com trusty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192 sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 40976EAF437D05B5 su

Ubuntu中update之错误 &nbsp; W: GPG签名验证错误

下载 29.6 MB,耗时 1分 1秒 (483 kB/s)                                                                                                                                                         正在读取软件包列表... 完成W: GPG 错误:http://mirrors.163.com precise Release: 由于

Ubuntu 更新源失败[GPG error]

对于错误 GPG error: http://ppa.launchpad.net precise Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B70731143DD9F856 可以通过以下方式解决 sudo apt-get clean sudo mv /var/lib/apt/lists /tmp sudo mkdir -p /v

ubuntu/wireshark -Lua: Error during loading: [string &quot;/usr/share/wireshark/init.lua&quot;]:45有关问题解决

ubuntu/wireshark --Lua: Error during loading: [string "/usr/share/wireshark/init.lua"]:45问题解决 错误如下: 解决方案:修改init.lua 直接运行wireshark的话会报错: Lua: Error during loading: [string "/usr/share/wireshark/init.lua"]:45: dofile has been disabled 要对

E: GPG error: http://mirrors.oschina.net trusty-backports InRelease: Clearsigned file isn&#39;t valid, got &#39;NODATA&#39; (does the network require authentication?)

E: GPG error: http://mirrors.oschina.net trusty-backports InRelease: Clearsigned file isn't valid, got 'NODATA' (does the network require authentication?) 更新源的时候出现了这个错误提示. 网上没找到答案,估计是源有问题,把这个出错的源删除了就可以了. 或者找个全新的源 E: GPG error: http://mirrors.oschina.

ubuntu.sh: 113: ubuntu.sh: Syntax error: &quot;(&quot; unexpected

在ubuntu电脑上安装lnmp环境,执行下面命令时 sudo sh ubuntu.sh 报错误:ubuntu.sh: 113: ubuntu.sh: Syntax error: "(" unexpected 原因: 兼容性问题,因为linux将sh默认指向了dash,而不是bash 解决办法:sudo dpkg-reconfigure dash 在弹出的窗口选择no 然后再重新执行 sudo sh ubuntu.sh就可以了 千里之行,始于足下.改变将来,从现在开始.改变现在,就是改

Ubuntu下 fatal error: Python.h: No such file or directory 解决方法

参考: fatal error: Python.h: No such file or directory Ubuntu下 fatal error: Python.h: No such file or directory 解决方法 根据使用的Python版本安装python-dev库. sudo apt-get install python-dev # for python2.x installs sudo apt-get install python3-dev # for python3.x i