尝试将我们的基本镜像迁移到稳定的Ubuntu 18.04,当我们尝试添加gpg密钥时,得到这个错误:
root@77ff14f29cab:/# apt-key add apt-key.gpg
gpg: failed to start agent '/usr/bin/gpg-agent': No such file or directory
gpg: can't connect to the agent: No such file or directory
gpg: failed to start agent '/usr/bin/gpg-agent': No such file or directory
gpg: can't connect to the agent: No such file or directory发布于 2018-05-14 01:42:03
您很可能遗漏了gpg-agent包:
gpg-agent/testing,unstable,now 2.2.5-1 amd64 [installed,automatic]
GNU privacy guard - cryptographic agent您应该运行的命令是apt install gpg-agent。
https://stackoverflow.com/questions/50318825
复制相似问题