首页 > 其他分享 >【分布式】解决树莓派4B-64位更换清华源问题(GPG error:because the public key is not available)

【分布式】解决树莓派4B-64位更换清华源问题(GPG error:because the public key is not available)

时间:2023-10-16 14:11:20浏览次数:39  
标签:available 树莓 cn mirrors tsinghua edu tuna main 4B

【分布式】解决树莓派4B-64位更换清华源问题(GPG error:because the public key is not available)

别出BUG求求了

于 2022-04-30 16:15:38 发布

阅读量3.1k
收藏 18

点赞数 7
分类专栏: 分布式 文章标签: debian bash 树莓派 清华源 public key
版权

分布式
专栏收录该内容
18 篇文章1 订阅
订阅专栏
一、首先是安装清华源,按照网上的教程来在官网安装(base 树莓派):
首先确定系统版本:
more /etc/debian_version
1
然后根据系统版本来跑上面给的指令:

# armv7l 用户:编辑 `/etc/apt/sources.list` 文件,删除原文件所有内容,用以下内容取代
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main non-free contrib rpi
# deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main non-free contrib rpi

# armv7l 用户如果需要开启 multi-arch 使用 arm64 软件源,需要在 `/etc/apt/sources.list` 中加上
deb [arch=arm64] http://mirrors.tuna.tsinghua.edu.cn/raspbian/multiarch/ buster main

# aarch64 用户:编辑 `/etc/apt/sources.list` 文件,用以下内容取代:
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free

# 对于两个架构,编辑 `/etc/apt/sources.list.d/raspi.list` 文件,删除原文件所有内容,用以下内容取代:
deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ buster main


二、更新软件源
在执行sudo apt-get update后出现以下的问题:

Reading package lists… Done
W: GPG error: http://mirrors.tuna.tsinghua.edu.cn/raspbian/multiarch bullseye InRelease: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY E77FC0EC34276B4B
E: The repository ‘http://mirrors.tuna.tsinghua.edu.cn/raspbian/multiarch bullseye InRelease’ is not signed.
N: Updating from such a repository can’t be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details

The following signatures couldn’t be verified because the public key
is not available: NO_PUBKEY E77FCOEC34276B4B Reading package lists…
Done W: GPG error: http://mirrors. tuna. ts inghua. edu.
cn/raspbian/multiarch bullseye InRelease: The following signatures co
uldn’t be verified because the public key is not available: NO_PUBKEY
E77FCOEC34276B4B E: The repository ’ http://mirrors. tuna. ts inghua.
edu. cn/raspb ian/multiarch bullseye InRelease’ is not signed. N:
Updat ing from such a repository can’t be done securely, and is
therefore disabled by default. N: See apt-secure(8) manpage for
repository creation and user configuration details.

三、解决办法:
更换源之后需要添加公钥,执行以下命令:

注意:这里的recv-keys就是报错中的key,粘贴过来即可:

gpg --keyserver keyserver.ubuntu.com --recv-keys E77FC0EC34276B4B
gpg --export --armor E77FC0EC34276B4B | sudo apt-key add -
————————————————
版权声明:本文为CSDN博主「别出BUG求求了」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_39589455/article/details/124514099

标签:available,树莓,cn,mirrors,tsinghua,edu,tuna,main,4B
From: https://www.cnblogs.com/zxdplay/p/17767222.html

相关文章

  • CF264B Good Sequences 题解
    GoodSequences状态很显然,设\(f[i]\)表示位置\(i\)的最长长度。关键是转移,暴力转移是\(O(n^2)\)的,我们必须找到一个更优秀的转移。因为一个数的质因子数量是\(O(\logn)\)的,而只有和这个数具有相同质因子的数是可以转移的;因此我们可以对于每个质数\(p\),设一个\(mx_p......
  • 1793_树莓派杂志第一期MagPi01阅读
    GreyZhang/little_bits_of_raspberry_pi:myhackingtripaboutraspberrypi.(github.com)        给自己的产品起一个好听的名称,我觉得这个是国外的企业中很好的一种文化。这里提到的苹果、黑莓等全都是一系列的水果。树莓派也有这样的风格,但是其实树莓派的名字由来还......
  • 1790_给通过USB连接到树莓派的NTFS硬盘设置固定的挂载名称
            全部学习汇总:GreyZhang/little_bits_of_raspberry_pi:myhackingtripaboutraspberrypi.(github.com)        我用过好几个树莓派形式的单板电脑,但是遇到过磁盘挂载位置不确定的时候。有些甚至不会自动挂载。这些行为跟对应的OS的行为是相关的,而我......
  • 1791_树莓派bash入门杂志_Essentials_Bash_v1
            全部学习汇总:GreyZhang/little_bits_of_raspberry_pi:myhackingtripaboutraspberrypi.(github.com)        拿到一份树莓派早期的宣传电子杂志资料,看了一下感觉还是有一些帮助。针对里面多少有一些共鸣的地方,做一个简单的整理。        ......
  • ORA-27301: OS failure message: No buffer space available
    这个报错主要这是由于网络缓冲区预留的可用空间较少。可以通过调整参数min_free_kbytes设置,这个参数要设置到总内存的0.4%以下,比如 256GBRAM,vm.min_free_kbytes设置1073742,可以设置更小。numa模式的参考OracleLinux:ORA-27301:OSFailureMessage:NoBufferSpaceAvai......
  • FMC144 -八路 250MSPS 14bit AD FMC子卡
    一、板卡概述 FMC144是一款具有8通道模数转换器(ADC)的FMC卡,具有14bit分辨率,最大采样速率达250Msps。时钟配置芯片为AD9516-1,可由板载10MHz时钟提供参考,也可由外部时钟提供。FMC144采用HPC连接器,输入信号为差分对信号。FMC144基于ADS62P49,具有低功耗和高动态性能,适合于多载......
  • jps提示9194 -- process information unavailable
    产生原因processinformationunavailable,是因为进程没有被正常结束,比如资源占用过大时挂掉或者没有结束进程就重启服务器,导致原进程变为--processinformationunavailable空值,解决方案有时候这个异常进程会自动消失,如果不消失的话,进入/tmp目录后,有以hsperfdata_{用户名}这样的......
  • LLM实践-在Colab上使用免费T4 GPU进行Chinese-Llama-2-7b-4bit推理
    一、配置环境1、打开colab,创建一个空白notebook,在[修改运行时环境]中选择15GB显存的T4GPU.2、pip安装依赖python包!pipinstall--upgradeaccelerate!pipinstallbitsandbytestransformers_stream_generator!pipinstalltransformers!pipinstallsentencepiece!pip......
  • 树莓派垃圾分类
    树莓派垃圾分类舵机控制代码importtimeimportAdafruit_PCA9685#定义舵机的最小脉冲和最大脉冲servo_min=150#最小脉冲长度(4096个单位)servo_max=670#最大脉冲长度(4096个单位)#初始化PCA9685舵机驱动pwm=Adafruit_PCA9685.PCA9685()pwm.set_pwm_freq(60)......
  • CodeForces 1874B Jellyfish and Math
    洛谷传送门CF传送门看到这种操作乱七八糟不能直接算的题,可以考虑最短路。对于\(a,b,c,d,m\)按位考虑,发现相同的\((a,b,m)\)无论如何操作必然还是相同的。于是考虑对于每个可能的\((0/1,0/1,0/1)\),所有终态有\((c=0/1,d=0/1)\)或者不确定。这样我们对于一......