通过代理在Ubuntu上安装Heroku Toolbelt

tan*_*ben 4 ubuntu heroku-toolbelt

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

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

wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh
Run Code Online (Sandbox Code Playgroud)

我收到一些错误:

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
Run Code Online (Sandbox Code Playgroud)

最明显的错误可能就是

Resolving toolbelt.heroku.com... failed: Name or service not know.
Run Code Online (Sandbox Code Playgroud)

我错过了什么?

hoo*_*zis 8

我在代理后面安装heroku工具带时遇到了同样的问题:

问题的核心是:

GPG error: http://toolbelt.heroku.com ./ Release: The following
signatures couldn't be verified because the public key is not
available: NO_PUBKEY C927EBE00F1B0520
Run Code Online (Sandbox Code Playgroud)

您会注意到,下次运行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 -
Run Code Online (Sandbox Code Playgroud)

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