最新下载的玩客云系统刷机后需要进行处理步骤
最新烧录版下载
烧录完成后的操作
直接apt update会出错
错误信息如下:
“命中:1 http://security.debian.org bookworm-security InRelease
命中:2 http://deb.debian.org/debian bookworm InRelease
命中:3 https://mirrors.aliyun.com/docker-ce/linux/debian bookworm InRelease
获取:4 https://github.armbian.com/configng stable InRelease [5,467 B]
命中:5 http://deb.debian.org/debian bookworm-updates InRelease
点击数:7 http://deb.debian.org/debian bookworm-backports InRelease
错误:4 https://github.armbian.com/configng stable InRelease
由于没有公钥,无法验证下列签名: NO_PUBKEY 93D6889F9F0E78D5 NO_PUBKEY 1EB30FAF236099FE
命中:6 https://xogium.performanceservers.nl/apt bookworm InRelease
正在读取软件包列表... 完成
正在分析软件包的依赖关系树... 完成
正在读取状态信息... 完成
所有软件包均为最新。
W: 校验数字签名时出错。此仓库未被更新,所以仍然使用此前的索引文件。GPG 错误:https://github.armbian.com/configng stable InRelease: 由于没有公钥,无法验证下列签名: NO_PUBKEY 93D6889F9F0E78D5 NO_PUBKEY 1EB30FAF236099FE
W: 无法下载 https://github.armbian.com/configng/dists/stable/InRelease 由于没有公钥,无法验证下列签名: NO_PUBKEY 93D6889F9F0E78D5 NO_PUBKEY 1EB30FAF236099FE
W: 部分索引文件下载失败。如果忽略它们,那将转而使用旧的索引文件。”
使用谷歌的双子座AI来解决
https://gemini.google.com/app/6869542018d8b5d3?hl=zh
解决办法
进入该网址https://github.com/armbian/configng/把页面汉化,即可找到答案。
该工具针对Armbian Linux进行了优化,但理论上,它也适用于任何基于 systemd、兼容 APT 的 Linux 发行版 - 包括 Linux Mint、Elementary OS、Kali Linux、MX Linux、Parrot OS、Proxmox、Raspberry Pi OS 等。
1,添加 Armbian 密钥 + 存储库并安装工具:
wget -qO - https://apt.armbian.com/armbian.key | gpg --dearmor | \
sudo tee /usr/share/keyrings/armbian.gpg > /dev/null
cat << EOF | sudo tee /etc/apt/sources.list.d/armbian-config.sources > /dev/null
Types: deb
URIs: https://github.armbian.com/configng
Suites: stable
Components: main
Signed-By: /usr/share/keyrings/armbian.gpg
EOF
sudo apt update
sudo apt -y install armbian-config
2,执行armbian-config
Armbian 配置已随 Armbian 预装。首先,打开终端或通过 SSH 登录,然后运行:
armbian-config
虽然现在还不懂armbian-config的作用,但是确实可以解决问题。