Generate SSH Keys in Ubuntu

SSH Key

SSH stands for Secure Shell and it is used widely as a means of accessing remote servers. The usage of SSH is recommended because it is considered a highly secure way of authenticating users remotely. Normally, we use passwords to authenticate users, however, passwords are prone to different security attacks. Therefore, they are not much … Read more

How to use chroot on Debian 11

Debian Chroot

At times, when we want to experiment with something new, we always prefer to run it on a virtual machine or in a sandbox environment so that it cannot cause any damage to our original machine or its important files. The chroot command allows us to run commands and programs in a safe environment by … Read more

How to Install and Use Snapd on Debian 11

Install snap and snapd on Debian

Snap packages are widely used all across different Linux distributions. These packages are easier to create, install, and manage and they are there to keep all of your applications updated. However, to use these packages, you need to have an API installed which is known as Snapd. This API is responsible for managing snap packages … Read more

How to Show or Hide Line Numbers in Vim

Line numbers in Vim explained

Vim is a powerful and highly configurable command line editor that comes installed with most Linux operating systems. It offers many useful features for editing and configuration of files. However, some of its useful features are disabled by default. One of them is line numbering. With Vim line numbering features, you can display line numbering … Read more

Linux csplit command explained (with examples)

The csplit command in Linux OS

csplit is a Linux command that can be used to split a large file into several smaller files/parts, depending on the user’s requirements. These parts are determined by the context lines. By default, csplit splits the file into 1000 lines per file and gives users the option to change the number of split lines according … Read more

How to Install Fish Shell on Ubuntu and Linux Mint

Fish Shell on Ubuntu

The Fish shell also known as the Friendly Interactive Shell is one of the richest Linux shells in terms of user experience. It comes with a whole bundle of useful features with the help of which users can use the command line interface very easily and conveniently. In this article, we will show you how … Read more

How to Restart Network on Ubuntu 22.04

Ubuntu Network Restart

Whenever a problem occurs with the system, the main solution is to perform a restart or reboot the system. Similarly, if a problem occurs with the network, then its easy treatment is to restart the network. There are many scenarios where you may need to restart the network on Ubuntu like settings of the network … Read more

How to Install Debian on Virtual Box

Debian installation on VirtualBox

The document will show you the step-by-step installation process of Debian 10 on Virtual Box. Virtual box is greatly recommended for IT users, students, and even professionals who have to work on multiple operating systems at once. Instead of installing different operating systems on your machine according to work requirements which involve complex setup process, … Read more

How to Mount NFS on Debian 11

NFS Mount on Debian Linux

With NFS (Network File System), you can share files and folders with other systems in a network. NFS is based on a client-server architecture that allows users to remotely connect and access files through the network. With NFS, users can access shared files and folders as if they exist in their own system. In this … Read more