Best Text Editors for Linux

A computer program that allows us to edit plain text is called a text editor. Text editors are improving day by day many of them can be used as IDE to write code in various programming languages and provide features such as syntax highlighting, text formatting, etc. On a Linux system, text editors broadly can … Read more

Explain command grouping and its usages in Linux?

Sometimes we need to collectively execute commands in Linux and redirect the whole output to a file. To serve this purpose command grouping is used. Many Linux s don’t know what is command grouping in Linux and how to use it. In this article, we will explain the command grouping in Linux and its usage. … Read more

How Systemd Is Different From SysVinit?

What Is init In Unix or Unix based systems init is the first process that gets started during system boot. It is the parent process of all the processes that are running into the system. It automatically adopts all the processes that get orphaned. init holds the process id 1. Once it gets started it … Read more

Grub Vs Lilo

A system requires different programs for accomplishing different tasks. The boot loader is the first program that runs when a computer starts. It is responsible for loading and transferring control to the operating system’s kernel. Grub and Lilo are two boot loaders that are used in Linux/ Unix operating systems. Grub is predominantly used for … Read more

How to set evironment variable in Linux?

An environment variable is a variable whose value is set outside the program, typically through a functionality built into the operating system. Usually, environment variables contains information such as drive, path, or filename. The environment variables can be set, recalled, and cleared with exactly the same syntax used for normal variables but we don’t often … Read more

How To Create A Zip File In Linux?

Zip is an archive file format that s lossless data compression. Zipping and unzipping tools are available for various platforms. Windows and macOS and many other OS are providing built-in zip . These files generally use .zip or .ZIP file extension. A zip tool allows you to specify the compression level from 1 to 9. … Read more

How to resize swap partition in Linux?

Creating multiple divisions of a physical disk is known as disk partitioning. Each division created is called a partition. Partitions make it easy to organize and share the data on a disk. You can edit and manipulate these partitions for various purposes. While installing the Linux operating system sometimes you may need to manually create … Read more

FreeBSD vs Linux

As I already discussed the differences between Unix and Linux operating systems. FreeBSD is an operating system based on Unix. Today in this article, we will discuss the differences between FreeBSD and Linux operating systems. What is FreeBSD? FreeBSD is a free and open-source operating system. It is descended from BSD (Berkeley Software Distribution) which … Read more