web-dev-qa-db-ja.com

エラー:パッケージ 'mongodb'にはインストール候補がありません

BeagleBoneのcloud9にパッケージをapt-getでインストールできません。E: Package 'mongodb' has no installation candidate。同じエラーが原因で、パッケージを動作させることができませんでした。更新、アップグレード、再起動しましたが、何も機能しません。

私のBBGに関する詳細情報:

debian@beaglebone:/var/lib/cloud9$ uname -a
Linux beaglebone 4.9.82-ti-r102 #1 SMP PREEMPT Thu Feb 22 01:16:12 UTC 2018 armv7l GNU/Linux


debian@beaglebone:/var/lib/cloud9$ cat /etc/*-release
PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
NAME="Debian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

また、ここに私のsources.listファイルがあります:

GNU nano 2.7.4               File: /etc/apt/sources.list                                                                    

deb http://deb.debian.org/debian stretch main contrib non-free
#deb-src http://deb.debian.org/debian stretch main contrib non-free

deb http://deb.debian.org/debian stretch-updates main contrib non-free
#deb-src http://deb.debian.org/debian stretch-updates main contrib non-free

deb http://deb.debian.org/debian-security stretch/updates main contrib non-free
#deb-src http://deb.debian.org/debian-security stretch/updates main contrib non-free

#deb http://deb.debian.org/debian stretch-backports main contrib non-free
##deb-src http://deb.debian.org/debian stretch-backports main contrib non-free

#Kernel source (repos.rcn-ee.com) : https://github.com/RobertCNelson/linux-stable-rcn-ee
#
#git clone https://github.com/RobertCNelson/linux-stable-rcn-ee
#cd ./linux-stable-rcn-ee
#git checkout `uname -r` -b tmp
#
deb [Arch=armhf] http://repos.rcn-ee.com/debian/ stretch main
#deb-src [Arch=armhf] http://repos.rcn-ee.com/debian/ stretch main
deb http://debian.mirror.ac.za/debian stretch main 
#deb-src http://debian.mirror.ac.za/debian stretch main
3
CodeLover

MongoDBは、BeagleBoneが使用するアーキテクチャであるarmhfではサポートされていません。詳細は #836435 を参照してください。その結果、Debian 9以降のDebianリポジトリでは利用できなくなりました。

5
Stephen Kitt