首页 > 其他分享 >docker 中 apt-get update 失败解决方案

docker 中 apt-get update 失败解决方案

时间:2022-10-29 00:44:22浏览次数:60  
标签:NO get update apt etc sources

1.更换apt的镜像源

1.1 进入目录

cd /etc/apt

1.2 备份源文件

cp /etc/apt/sources.list /etc/apt/sources.list.bak

1.3 更改镜像源

cat <<EOF >/etc/apt/sources.list
deb http://mirrors.ustc.edu.cn/debian stable main contrib non-free
deb http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free
EOF

1.4 执行更新命令

apt-get update
这个时候会报错,The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 648ACFD622F3D138 NO_PUBKEY 0E98404D386FA1D9 NO_PUBKEY 605C66F00D6C9793

根据提示依次安装证书
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 648ACFD622F3D138

1.5 再次执行更新命令即可

警告不用理会

标签:NO,get,update,apt,etc,sources
From: https://www.cnblogs.com/dennisdong/p/16837922.html

相关文章

  • wget: unable to resolve host address解决方法
    利用wget下载东西时,比如输入指令wgetwww.baidu.com提示报错“wget:unabletoresolvehostaddress…”wget:无法解析主机地址。这就能看出是DNS解析的问题解决办......
  • scanf() getchar()输入问题
    #define_CRT_SECURE_NO_WARNINGS1#include<stdio.h>intmain(){intret=0;intch=0;charmima[20]={0};printf("请输入密码:");scanf("%s",mima);prin......
  • java http web getToken and login.
    LogInHelper.javapackagecom.yd.dcap.integration.helper;importcom.fasterxml.jackson.annotation.JsonIgnoreProperties;importcom.yd.dcap.integration.EnvConf......
  • GetCaculator
    importjava.util.Map;publicclassGetCaculator{//将参数封装用于请求API接口publicstaticCaculatorgetBean(Preferprefer,Map<String,String>par......
  • 解决:ResourceWarning: Enable tracemalloc to get the object allocation traceback
    发现一个很有意思的事情:deftearDown(self):self.driver.close()会报错:/opt/homebrew/anaconda3/envs/Selenium/bin/python/Users/mokin.li/PycharmProje......
  • OpenGL ES EGL eglGetError
    目录一.EGL前言二.EGL绘制流程简介三.eglGetError函数简介四.eglGetError函数使用五.猜你喜欢零基础OpenGLES学习路线推荐:OpenGLES学习目录>>Ope......
  • Java System.getProperty(“java.io.tmpdir“) 获取系统临时目录
    System.getProperty("java.io.tmpdir")是获取操作系统的缓存临时目录在windows7中的目录是:C:\Users\登录用户~1\AppData\Local\Temp\或者也可以直接去你的应用服务器对......
  • mysql update 带条件的语句执行错误
    需求:想着更新id最大的一条数据: 原来的sql:   updatework_plane_log_detailsSET`off_working_time`='2021-03-0911:16:23'WHEREidin(selectidfromwork_pl......
  • QTableWidget设置列宽行高大小的几种方式
    列宽、行高自动分配//列宽自动分配tableWidget.horizontalHeader().sectionResizeMode(QHeaderView::Stretch)//行高自动分配tableWidget.verticalHeader().Section......
  • getline与stringstream的用法
    https://www.acwing.com/problem/content/922/#include<bits/stdc++.h>usingnamespacestd;constintN=505;intn,m;intdist[N],stop[N],q[N];boolg[N]......