57

当我尝试在我的 AWS EC2 Linux 实例中安装 mongoDb 时:Ubuntu 12.04.1 LTS,

deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen

我收到以下错误,这意味着找不到 deb 命令。

$ deb Sorry, command-not-found has crashed! Please file a bug report
at: https://bugs.launchpad.net/command-not-found/+filebug Please
include the following information with the report:
 
command-not-found version: 0.2.44

有人可以帮我了解如何在我的 AWS 实例中安装 deb 吗?

4

1 回答 1

123

Deb 不是命令。您需要编辑/etc/apt/sources.list文件并添加以下行

deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen

到文件的末尾。

然后,更新您的系统,然后安装 MongoDB。假设 mongodb 是您需要的包,然后运行以下命令:

sudo apt-get update
sudo apt-get install mongodb
于 2012-11-02T12:40:28.453 回答