如何更新Debian源和导入公钥
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何更新Debian源和导入公钥相关的知识,希望对你有一定的参考价值。
参考技术A 系统安装好后,先运行apt-getupdate然后安装apt-spyapt-getinstallapt-spy最后用apt-spy-dunstable-aasia-t5命令行中的-d选项指定发行版本,如stable、testing、unstable。-a选项指定debian安装源服务器的区域,如asia、Europe、North-America等。这些区域信息保存在/etc/apt-spy.conf文档中,如果要测试所有服务器,还可用ALL关健字代替具体的区域。-t选项指定连接超时阀值,阀值以秒为单位,设置较小的阀值能有效提高测试速度,忽略慢速服务器。测试完成后,apt-spy会自动创建/etc/apt/sources.list.d文件夹,并在里面创建apt-spy.list文件。所以把apt-spy.list拷贝到/etc/apt/sources.list文件,就能把寻找到的源使用了,记得要备份你原来的sources.list文件。随后就可以用apt-getupdate来更新镜像站点这样,我们以后安装软件就很快了!附:apt-spy[options]选项:-ddistribution选择debian的发行版本,例如stable。除升级外,必须使用此参数。-aarea选择进行测试的区域,例如Aisa。-cconfig指定配置文件。-enumber指定测试的服务器数量。-ffile测试时抓取制定的文件(文件相对debianbase的路径)。-ifile指定输入的文件,配合-w参数使用。-mmirror-list指定要升级的镜像列表文件。-ooutput-file重定向输出到指定文件。-pproxy指定使用的代理服务器,需要遵从[server]:[port]的格式。-scountry_list指定要进行测试的国家。不能和-a参数同时使用。-ttime指定进行测试时每台服务器的超时时间,只能是正整数。-uupdate-URL从指定的URL获得镜像列表更新。-wfile输出-i参数提供的服务器列表中速度最快的前几台镜像服务器(缺省是前5台)。-nnumber制定-w参数输出的服务器数量。-v输出版本信息。-h输出当前帮助信息docker中ubuntu源更新慢加速 换为国内
本来以为是Ubuntu打包的镜像,换了阿里源老是报错100公钥不可用,结果发现是Debian的操作系统,换位Debian的操作系统打包的,换位Debian的源即可
#源如果使用错误也会报错,没有Debian10的源,使用9.x的阿里源也能解决解决
cat /etc/issue #查看版本 cat /etc/os-release cat > /etc/apt/sources.list <<eof deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib deb http://mirrors.aliyun.com/debian-security stretch/updates main deb-src http://mirrors.aliyun.com/debian-security stretch/updates main deb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib deb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib eof ######################################################## cat > /etc/apt/sources.list <<eof deb http://mirrors.163.com/debian/ stretch main non-free contrib deb http://mirrors.163.com/debian/ stretch-updates main non-free contrib deb http://mirrors.163.com/debian/ stretch-backports main non-free contrib deb-src http://mirrors.163.com/debian/ stretch main non-free contrib deb-src http://mirrors.163.com/debian/ stretch-updates main non-free contrib deb-src http://mirrors.163.com/debian/ stretch-backports main non-free contrib deb http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib deb-src http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib eof
以上是关于如何更新Debian源和导入公钥的主要内容,如果未能解决你的问题,请参考以下文章
如何信任 apt 存储库:Debian apt-get update 错误公钥不可用:NO_PUBKEY <id> [关闭]