List all services Linux

In this short post, we will learn to use a command to list all services from Linux operating system. The command we are going to discuss here should work other operating systems like Mac and Unix. Conclusion In this short … Read More

Delete history from Linux terminal

In this short post, we will see a command to delete history from Linux terminal. To delete a single history you can use the following command: Example The above command will delete the history number 5.

(Solved): systemctl: command not found

The systemctl command not found error is a common issue we face while using the Linux. In some cases, the error may occur if the necessary packages or dependencies for systemctl are missing or not installed. In this post, we … Read More

Install MongoDB BI Connector in Ubuntu

Introduction MongoDB BI Connector is a connector that allows you to use MongoDB as a data source for SQL-based BI (Business Intelligence) and visualization tools. It allows you to connect your BI tools, such as Tableau, to a MongoDB database … Read More

How to install MySQL ODBC driver in Ubuntu

MySQL is one of the most popular relational database management systems used by businesses and developers worldwide. However, in order to connect to a MySQL database using ODBC (Open Database Connectivity) on Ubuntu, we need to install the MySQL ODBC … Read More

Delete all directories and keep files in Linux

In this short post, we will learn to delete all the directories (folders) and keep the file as it is. This means deleting all the directories and not removing the files available in a particular location. Steps: Let’s say you … Read More

How to Login/SSH to AWS EC2 linux instance?

Use case Prerequisites SSH from Windows machine Convert PEM to PPK file When you install the putty you might already have puttygen installed. Hence, open it. SSH from putty You should be able log in to ec2 instance. SSH from … Read More

How to uninstall Nginx completely in Linux Ubuntu?

Problem definition Sometimes, we need to uninstall nginx server and also need to remove all the config files. But, it may not remove the config files automatically at first go. So, here I am going to explain all the steps … Read More