首页 > 系统相关 >ubuntu Fix The Google GPG Error on Ubuntu

ubuntu Fix The Google GPG Error on Ubuntu

时间:2024-02-18 23:44:19浏览次数:50  
标签:Google Hit InRelease Fix GPG bionic https ubuntu com

想装下node.js,结果ubuntu输入apt update环境炸了,原因是google的GPG key更新了

报错

(base) woodx@Machine:~$ sudo apt update
Get:1 file:/var/cudnn-local-repo-ubuntu1804-8.8.1.3 InRelease [1,572 B]
Get:2 file:/var/nv-tensorrt-local-repo-ubuntu1804-8.5.1-cuda-11.8 InRelease [1,575 B]
Get:1 file:/var/cudnn-local-repo-ubuntu1804-8.8.1.3 InRelease [1,572 B]
Get:2 file:/var/nv-tensorrt-local-repo-ubuntu1804-8.5.1-cuda-11.8 InRelease [1,575 B]
Hit:3 https://mirrors.aliyun.com/ubuntu bionic InRelease
Hit:4 https://mirrors.aliyun.com/ubuntu bionic-security InRelease
Get:5 https://dl.google.com/linux/chrome/deb stable InRelease [1,825 B]
Hit:6 https://mirrors.aliyun.com/ubuntu bionic-updates InRelease
Hit:7 http://packages.microsoft.com/repos/code stable InRelease
Err:5 https://dl.google.com/linux/chrome/deb stable InRelease
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY E88979FB9B30ACF2
Get:8 https://download.docker.com/linux/ubuntu bionic InRelease [64.4 kB]
Hit:9 https://mirrors.aliyun.com/ubuntu bionic-backports InRelease
Get:10 https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64 InRelease [1,484 B]
Hit:11 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu bionic InRelease
Hit:12 https://nvidia.github.io/nvidia-container-runtime/stable/ubuntu18.04/amd64 InRelease
Hit:13 https://nvidia.github.io/nvidia-docker/ubuntu18.04/amd64 InRelease
Hit:15 http://ppa.launchpad.net/graphics-drivers/ppa/ubuntu bionic InRelease
Get:16 http://download.opensuse.org/repositories/home:/pzz/xUbuntu_18.04 InRelease [1,514 B]
Get:17 http://download.opensuse.org/repositories/home:/pzz/xUbuntu_18.04 Packages [1,459 B]
Hit:14 https://packagecloud.io/github/git-lfs/ubuntu bionic InRelease
Fetched 68.9 kB in 2s (35.2 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
33 packages can be upgraded. Run 'apt list --upgradable' to see them.
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://dl.google.com/linux/chrome/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY E88979FB9B30ACF2
W: Failed to fetch https://dl.google.com/linux/chrome/deb/dists/stable/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY E88979FB9B30ACF2
W: Some index files failed to download. They have been ignored, or old ones used instead.

 

解决办法: 输入 wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 

标签:Google,Hit,InRelease,Fix,GPG,bionic,https,ubuntu,com
From: https://www.cnblogs.com/woodx/p/18020169

相关文章

  • google chrome 获取书签的添加日期
    有的时候想找一个书签的添加日期,在浏览器上貌似看不到 设备:win10google书签位置:username是你的用户名C:\Users\username\AppData\Local\Google\Chrome\UserData\Default\Bookmarkspython获取数据importpandasaspdimportjsonimportdatetimewithopen......
  • 创新技巧|迁移到 Google Analytics 4 时如何保存历史 Universal Analytics 数据
    GoogleUniversalAnalytics从2023年7月起停止收集数据(除了付费GA360之外)。它被GoogleAnalytics4取代。为此,不少用户疑惑:是否可以将累积(历史)数据从GoogleAnalyticsUniversal传输到GoogleAnalytics4?您无法将数据传输到新的GA4界面。但您可以将数据保存在Goog......
  • VS Code 使用 php cs fixer 扩展根据 psr 规范修复/格式化代码
    参考https://github.com/PHP-CS-Fixer/PHP-CS-Fixerhttps://www.cnblogs.com/huangtailang/p/6604124.html环境软件/系统版本说明WindowsWindows10专业版22H219045.4046phpphp-8.2.5-nts-Win32-vs16-x64vscode1.86.2phpcsfixerv0.3.11vs......
  • Google Earth Pro谷歌地球专业版
    GoogleEarthPro谷歌地球专业版,标准版,在国内可以用的,常见的黑屏问题可以解决的需要解决黑屏问题的可以找我(V×:F2233F) ......
  • Suffix Array:后缀数组学习笔记
    后缀排序后缀排序,顾名思义就是给后缀排个序。朴素做法是\(O(n^2\logn)\)的,无法接受。因此诞生了基于倍增思想的后缀排序算法。其中倍增思想在集训队论文中讲得很好,在此不再赘述。这里主要讲代码实现。constintN=2e6+10;chars[N];intn,m,sa[N],rk[N],tp[N],b[N];void......
  • Google的蛋白质结构预测项目代码(Demo)
    相关:ArtificialIntelligence|60MinutesFullEpisodes......
  • 为什么是Google创造了AlphaGo,而不是其他公司?
    相关:ArtificialIntelligence|60MinutesFullEpisodes答案:Google一直在进行AI方向的探索;Google有足够的算力。......
  • scheduleAtFixedRate 与 scheduleWithFixedDelay 的区别
    scheduleAtFixedRate该⽅法在initialDelay时⻓后第⼀次执⾏任务,以后每隔period时⻓,再次执⾏任务。注意,period是从任务开始执⾏算起的。开始执⾏任务后,定时器每隔period时⻓检查该任务是否完成,如果完成则再次启动任务,否则等该任务结束后才再次启动任务。scheduleWithFixDelay......
  • 在我的VS2019中重新配置2017项目生成的google test 项目
    原来的项目是其他版本的VS配置的,自己下载下来时候,本机也没有装GoogleTest所以用不起。如果重建项目在一个个引入工程代码太麻烦(文件多),所以我就想着有没有什么办法快捷配置,不用重建工程以下是我的一个配置方法,供大家交流学习:1.首先你本机要安装上GoogleTest,安装方法自查;2.如......
  • google play(谷歌) 订阅接入 支付后台配置
    一、Google开发者平台配置回调订阅后台地址https://console.cloud.google.com/projectselector2/cloudpubsub/topic/list 新建主题   创建订阅输入回调服务端地址(付款成功后进行回调) 并且需要设置 [email protected]......