首页
关于
Search
1
AdGuardHome 安装及部署教程
40,707 阅读
2
搭建基于telegram的无限网盘
10,100 阅读
3
关于微软Azure学生白嫖指南
9,713 阅读
4
Oracle开放全部端口并关闭防火墙
9,497 阅读
5
最新Cloudflare免费自选IP教程(非Partner)
9,329 阅读
默认分类
技术搬砖
教学设计
故事奇谈
生活琐事
错题分析
精品软件
登录
Search
标签搜索
docker
张至顺
PHP
图床
Cloudflare
金刚长寿功
PT
qBittorrent
阿里云
onedrive
telegram
代理
青龙
python
内网穿透
一键
telegraph
ipv6
cf_workers
serv00
myedunote
累计撰写
101
篇文章
累计收到
1
条评论
首页
栏目
默认分类
技术搬砖
教学设计
故事奇谈
生活琐事
错题分析
精品软件
页面
关于
搜索到
1
篇与
Debian
的结果
2023-11-26
Debian一键换源
一键切换国内源网站教程:网站:https://linuxmirrors.cn/开源:开源:https://github.com/SuperManito/LinuxMirrorsbash <(curl -sSL https://linuxmirrors.cn/main.sh)海外使用:bash <(curl -sSL https://linuxmirrors.cn/main.sh) --abroad 一键安装Docker:bash <(curl -sSL https://linuxmirrors.cn/docker.sh)一键切换官方源cp -r /etc/apt/sources.list /etc/apt/sources.list.bak;echo -e "deb http://deb.debian.org/debian buster main\ndeb-src http://deb.debian.org/debian buster main\ndeb http://security.debian.org/debian-security buster/updates main\ndeb-src http://security.debian.org/debian-security buster/updates main" > /etc/apt/sources.list;cat /etc/apt/sources.list;apt-get update;如果出现问题:1、Repository 'http://security.debian.org/debian-security buster/updates InRelease' changed its 'Suite' value from 'stable' to 'oldstable'apt-get --allow-releaseinfo-change update2、GPG error: http://deb.debian.org/debian buster-backports InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 0E98404D386FA1D9 NO_PUBKEY 6ED0E7B82643E131E: The repository 'http://deb.debian.org/debian buster-backports InRelease' is not signed.说明仓库没有签名,缺PUBKEY,按以下方法解决apt-key adv --keyserver keyserver.ubuntu.com --recv-keys <PUB_KEY1> <PUB_KEY2>……比如上面那个就可以这样:sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0E98404D386FA1D9 6ED0E7B82643E1313、添加PUBKEY时提示,gpg: failed to start the dirmngr `'/usr/bin/dirmngr'`: No such file or directory我们只需要在系统上安装dirmngr包apt install dirmngr --install-recommends -y4、如果出现E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation 那你还需要先装个gnupgapt-get install gnupg -y
2023年11月26日
130 阅读
0 评论
0 点赞