×


Search For:


Install Bomber on Linux Mint 20 - Step by step guide ?

This article covers how to install the Bomber game on a Linux Mint 20 system. In fact, Bomber is a game where you fly a spaceship and attempt to bomb the buildings below you. Each pass the spaceship makes, it gets lower and lower. If you’ve not destroyed a building in your path, you will crash into it.


How to Install bomber Using apt on Debian Linux system ?

1. Update apt database with apt using the following command:

$ sudo apt update

2. After updating apt database, We can install bomber using apt by running the following command:

$ sudo apt -y install bomber


How To Uninstall bomber on debian ?

To uninstall only the bomber package we can use the following command:

$ sudo apt-get remove bomber


Generating Random Numbers via Linux Terminal

This article covers how to generate random numbers with a small command on the terminal or by creating the script.


Install MongoDB on Fedora 35 - Step by step guide ?

This article covers how to install the MongoDB database on your Fedora 35 system. In fact, MongoDB stores documents in collection. Collections are analogous to tables in relational databases. Every record in a mongoDB document, which is a data structure composed of field and pair values.


How to Run MongoDB Community Edition on Fedora ?

1. We can start MongoDB service using this command:

$ sudo systemctl start mongod

2. You can verify that the mongod process has started successfully by issuing the following command:

$ sudo systemctl status mongod

3. To make MongoDB start automatically when the system reboot, enter this command:

$ sudo systemctl enable mongod

Once we verify that our mongod process has started successfully, we can connect to MongoDB server. MongoDB provide an utility (shell) to interact with its database called mongosh.

4. To start a mongosh session on the same host machine as the MongoDB server (mongod), you can run mongosh without any command-line options:

$ mongosh


Install Asterisk on Debian 11 - Step by step guide ?

This article covers how to install the latest version of the Asterisk VoIP server on Debian 11 Bullseye. In fact, Asterisk is an Open Source PBX and telephony toolkit which can be used with Voice over IP (SIP, H.323, IAX and more) standards, or the Public Switched Telephone Network (PSTN) through supported hardware.


How to Install asterisk Using apt-get on Debian ?

1. Update apt database with apt-get using the following command:

$ sudo apt-get update

2. After updating apt database, We can install asterisk using apt-get by running the following command:

$ sudo apt-get -y install asterisk


Install Zoom Client on Fedora 35 - Step by step guide ?

This article covers how to install the Zoom Client on your Fedora 35 system. In fact Zoom provides free video call, chat, and remote desktop sharing services but with time and participant limitations. 


How to Install Zoom Client on Fedora ?

Zoom client is available in RPM packaged format for Fedora. 

1. Use the wget command to download the package in the terminal:

$ wget https://zoom.us/client/latest/zoom_x86_64.rpmCOPY

2. Once the Zoom client package is downloaded, install it with the dnf command:

$ sudo dnf install -y zoom_x86_64.rpm


How to Install zoom-client on Fedora via snaps ?

1. Enable snaps on Fedora and install zoom-client:

$ sudo dnf install snapd

2. To enable classic snap support, enter the following to create a symbolic link between /var/lib/snapd/snap and /snap:

$ sudo ln -s /var/lib/snapd/snap /snap

3. To install zoom-client, simply use the following command:

$ sudo snap install zoom-client


Install VLC Media Player on Fedora 35 - Step by step guide ?

This article covers how to install the VLC Media Player on your Fedora 35 system. In fact, The VLC media player is an open-source, free portable, cross-platform media player software and streaming media server developed by the VideoLAN project.


How to Install VLC on Fedora via Snaps ?

1. Enable snapd

Snap can be installed on Fedora from the command line:

$ sudo dnf install snapd

2. Enable snap support

To enable classic snap support, enter the following to create a symbolic link between /var/lib/snapd/snap and /snap:

$ sudo ln -s /var/lib/snapd/snap /snap

3. Install VLC

To install VLC, simply use the following command:

$ sudo snap install vlc