Category Linux

How to use the tree command in Linux?

Edit File In Linux

The tree command recursively lists directories and files in Linux. Files are listed in an indented manner under their directories. Tree command is similar to ls command which is famously known for listing files and directories. The only difference is…

A Step-By-Step Guide to Install CMake on Linux

Cmake

In this article, we’ll learn to install cmake on Linux. CMake is a cross-platform open-source meta-build system that can build, test, and package software. It can be used to support multiple native build environments including make in Linux/Unix, Apple’s Xcode, and…

How to use the dd command in Linux?

20200904 154458 0000

The dd command is a utility to copy and convert files from one location to the other. Interestingly, it stands for ‘copy and convert’ but since the name cc was already taken by the C compiler, it was named ‘dd‘.…

How to use the fsck command in Linux?

Fsck Illustration

The fsck command (file system consistency check) is a utility to check and repair a Linux Filesystem. Modern file systems with journaling are designed such that tools like fsck are not readily required. However, in a few cases, fsck might…

What is the vmstat command in Linux?

VMSTAT COMMAND IN LINUX

The vmstat command is short for ‘Virtual Memory Statistics’. It is a tool that reports on Virtual memory statistics. To be specific, it reports data about your system’s memory, swaps, and processor resource utilization, kernel threads, and disks in real-time.…