Mongo DB fails to install on Ubuntu 22.04
Installing Evoko Home 2.8.2 on a Ubuntu 22.04 may fail due to missing mirrors in the .list files and missing GPG keys.
Steps to resolve
Prerequisites: Install and download the latest Ubuntu 22.04 LTS from the Ubunto homepage. Download the current version (2.8.2) of Evoko Home.
- Open Terminal in Ubuntu.
- Run the following command:
sudo apt-get install gnupg curl
- Run the following command: curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg \
--dearmor && curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | \
sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg \
--dearmor - Run the following command:
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list && echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list
- Run the following command:
sudo apt-get update
- Close terminal and navigate to Downloads and delete the "Installation_V2.8.2-tar_feb25" folder This is subject to change with later versions.
- Open Terminal and run the installation as described in the "Getting Started" article.