Splitting Files in Unix Systems 1. Introduction In this short tutorial, we’ll take a look at a few different ways we can split files in Unix systems. All of these commands were tested in Bash, but are platform-independent. 2. Using split One of the most common ways of splitting files… Continue Reading split-files

A Guide to Yum and Apt 1. Overview Package Managers are a great feature of every Linux system. They allow us to easily handle the installation, removal, and inspection of software packages. In this tutorial, we’ll learn how to use two among the most famous ones: YUM and APT. 2.… Continue Reading yum-and-apt

Linux Commands – top 1. Overview It’s quite common to find ourselves in a situation where we need to know the resource usage of each process and thread in our system. For example, we might want to know which process is slowing down our system. In this tutorial, we’ll look… Continue Reading top-command

Guide to the Linux find Command 1. Introduction The Linux https://en.wikipedia.org/wiki/Find(Unix)[find]_ command can be used to find files and directories on a disk. It provides several command-line options that make it a powerful tool. In this tutorial, we’ll look at how to use the find command. 2. Syntax Let’s quickly… Continue Reading find-command