Vim save and quit

Vim or VI Improved is a powerful open-source text editor used primarily for writing and editing text. Essentially, Vim is a text editor found in Unix and Linux based systems, and it’s also one of the oldest and stable text editors there are. One of the basic steps to learn is how to use Vim’s …

Read more

Remove directory Linux

If you’re still new to Linux’s command line and want to learn basic commands, you’ve come to the right place. If you’re looking for different ways on how to remove a directory in Linux, you’re in the right place. Before we hop in, there are a few things you should understand first. Before We Begin …

Read more

Ubuntu enable ssh

Setting a remote connection between a client and server can be dangerous without first setting proper security measures. A secure connection is vital when managing your server and transferring files without the risk of compromising any sensitive information. That’s why enabling Secure Shell (SSH) is crucial to keeping your files, connection, and server activity secure …

Read more

How To Install Pip3

Having a management system for installing python-based software can be useful. This makes it easier to navigate through python-based applications and packages. This is why most users find Pip convenient to have to manage their Python libraries. The installation steps are simple and shouldn’t take you long! Below, I’ll guide you on how to install pip and how …

Read more

How To Use Bash if else Statement

Decision making is at the heart of computer programming. Which is why conditional statements play a crucial role in the programming language. It allows you to test whether conditions in your program are true or not. To execute the program, you need to work with bash and shell scripting. In this guide, I’ll teach you …

Read more

Symbolic link Linux

A symbolic link is a special file that provides Linux users with a reference to another file or directory. We also refer symbolic links as a soft link or symlink. Something Here In this guide, we’ll teach you how to create symbolic links using the ln command. Types of Symbolic Links Before we dive into …

Read more