Install REMI Repository on CentOS 8 linux

REMI is a free to use repository created and maintained by a Remi Collect. The REMI repository main goal is to provide the latest versions of the PHP stack, full featured, and some other software packages to the Fedora and Enterprise Linux (RHEL, CentOS, Oracle, Scientific Linux) operating systems. Most of the packages provided by … Read more

How to configure static ip address on CentOS 8

In this tutorial, we are going to show you how to configure a static IP address with network scripts, nmtui and nmcli utilities in CentOS 8 minimal. See How to install CentOS 8 Minimal server Setup network on CentOS 8 minimal To configure a network interface, run the following nmtui command. After opening Network manager … Read more

How to install CentOS 8 Minimal server

CentOS is a free and open source operating system derived from the sources of Red Hat Enterprise Linux (RHEL). CentOS (Community Enterprise Operating System) is a community-supported distribution of Linux. CentOS 8 is the latest version of CentOS operating system and it has been released last week. In this article, we will demonstrate how to … Read more

How to enable EPEL repository on CentOS 7

EPEL (Extra Packages for Enterprise Linux) is open source and free community based repository project from Fedora team which provides 100% high quality add-on software packages for Linux distribution including RHEL (Red Hat Enterprise Linux), CentOS, and Scientific Linux. Enabling this repository gives you access to popular software packages including Nginx, R, and Python Pip. … Read more

How to use apt Command in Linux

APT also known as Advanced Packaging Tool is the command-line tool for managing packages in Debian-based distributions like Ubuntu 16.04, Ubuntu 18.04, Debian 8, Debian 9 and much more. It combines the most frequently used commands from the apt-get and apt-cache tools with different default values of some options. APT simplifies the process of installing, … Read more

How to use grep command

The grep command which stands for “global regular expression print” is one of the most powerful and commonly used commands in Linux. Grep searches one or more input files for lines that match a given pattern and writes each matching line to standard output. If no files are specified, grep reads from the standard input … Read more

How to mount NTFS drive on CentOS

The New Technology File System (NTFS) is a proprietary file system created by Microsoft and is used extensively in Microsoft’s Windows operating systems. By default most Linux distributions are not able to mount NTFS, however it is possible to install a driver that allows us to do this so that we can read and write … Read more

How To Use Linux Which Command

The which command in Linux is used to locate any command in Linux. A command is essentially an executable that you can run. The command searches for the executable specified as an argument in the directories listed in the PATH environment variable. In other words, if you are wondering where exactly is a certain program … Read more