Fedora
Add a desktop entry
An example for IntelliJ Idea:
- Create an
idea.desktop
file in/usr/share/applications
directory
touch /usr/share/applications/idea.desktop
- 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:
- 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
- Install
mongodb-org
:
sudo dnf install -y mongodb-org
- Check MongoDB version:
mongod --version