4

我正在尝试在通过代理连接到 Internet 的 Ubuntu 机器上安装 Heroku Toolbelt。我对 Ubuntu 及其设置很陌生,但我设法连接到互联网很好。互联网似乎工作正常,只是通过 apt-get 浏览和获取更新总是成功的,并且 curl 命令返回预期的内容。

当我尝试在 Heroku Toolbelt 站点上运行命令时:

wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh

我收到一些错误:

me@mypc-vb:~/Documents/stuff$ wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh
This script requires superuser access to install apt packages.
You will be prompted for your password by sudo.
[sudo] password for hsiehbe: 
--2012-11-15 15:09:46--  https://toolbelt.heroku.com/apt/release.key
Resolving toolbelt.heroku.com... failed: Name or service not known.
wget: unable to resolve host address `toolbelt.heroku.com'
gpg: no valid OpenPGP data found.
Ign http://us.archive.ubuntu.com oneiric InRelease
Ign http://security.ubuntu.com oneiric-security InRelease           
Ign http://extras.ubuntu.com oneiric InRelease                       
...
Fetched 12.9 MB in 32s (394 kB/s)                                                                                     
Reading package lists... Done
W: GPG error: http://toolbelt.heroku.com ./ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY C927EBE00F1B0520
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  foreman heroku libreadline5 libruby1.9.1 ruby1.9.1
Suggested packages:
  ruby1.9.1-examples ri1.9.1 graphviz ruby1.9.1-dev
The following NEW packages will be installed:
  foreman heroku heroku-toolbelt libreadline5 libruby1.9.1 ruby1.9.1
0 upgraded, 6 newly installed, 0 to remove and 27 not upgraded.
Need to get 4,815 kB of archives.
After this operation, 15.9 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  foreman heroku heroku-toolbelt
E: There are problems and -y was used without --force-yes

最明显的错误可能只是

Resolving toolbelt.heroku.com... failed: Name or service not know.

我错过了什么?

4

1 回答 1

8

在代理后面安装heroku toolbelt时,我遇到了同样的问题:

问题的核心是这样的:

GPG error: http://toolbelt.heroku.com ./ Release: The following
signatures couldn't be verified because the public key is not
available: NO_PUBKEY C927EBE00F1B0520

您会注意到,下次运行 apt-get update 时,您将获得相同的消息。似乎 ubuntu 无法获取 heroku 包存储库的公钥。

要克服这个问题,您可以按照此处所述手动附加公钥:http: //en.kioskea.net/faq/809-debian-apt-get-no-pubkey-gpg-error

gpg --keyserver pgpkeys.mit.edu --recv-key  C927EBE00F1B0520 
gpg -a --export C927EBE00F1B0520 | sudo apt-key add -

在此之后,安装脚本将运行正常。

于 2013-02-07T15:24:32.750 回答