Fedora

Add a desktop entry

An example for IntelliJ Idea:

  1. Create an idea.desktop file in /usr/share/applications directory
touch /usr/share/applications/idea.desktop
  1. Add the following lines to the idea.desktop file:
[Desktop Entry]
Version=1.0
Name=Idea
GenericName=IntelliJ Idea
Exec=<path to idea.sh>
Icon=<path to idea.png>
Terminal=false
Type=Application
Keywords=intellij;idea;

Install MongoDB

Install MongoDB Community Edition 4.4 on Fedora 33:

  1. Add a yum repository be creating a /etc/yum.repos.d/mongodb-org-4.4.repo file with the following content:
[mongodb-org-4.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/amazon/2/mongodb-org/4.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-4.4.asc
  1. Install mongodb-org:
sudo dnf install -y mongodb-org
  1. Check MongoDB version:
mongod --version