How to Display PPIDs in Linux

Linux Parent Process ID

In Linux, PPID refers to the process ID of the parent process. A parent process in Linux is the one that is capable of spawning child processes. A single parent process can have multiple child processes whereas a single child process can belong to one and only one parent process. In other words, multiple child … Read more

Set Date and Time on CentOS 8 Desktop and Server

CentOS date setting

It is very important that your installed operating system has the correct date and time. A lot of advantages while you properly maintain the time and date of your system. Many processes on your CentOS system, e.g. cronjobs, depend on the correct date and time settings. In this tutorial, we will explore the two different … Read more

How to get a list of Symbolic Links on Linux

List Symlinks

A symbolic link also known as a soft link is a kind of a pointer that points to the location of a folder or a file on your system. Some of these links are created by default on your system, whereas you yourself can also create symbolic links manually for any of your desired files … Read more

How to Install Kubernetes minikube on Ubuntu 20.04

Ubuntu Minikube

“minikube” is a lightweight tool that allows you to run Kubernetes locally on your Linux, macOS, or Windows-based systems. It lets you enjoy almost all the features of Kubernetes without actually installing it on your system. It has the ability to run a single-node Kubernetes cluster on your target system. This tutorial shows you how … Read more

Linux tee command explained (with examples)

Linux tee Command

When you run basic commands on the terminal the output is usually printed to the terminal i.e standard out. But what if you could also save the output in a file as well as print it out to standard out? This is what the tee command does. The Linux tee command reads from stdin ( … Read more

13 Important Privacy and Security Settings in Ubuntu Linux

Ubuntu Security Settings

Everybody should be concerned about their privacy and security in this day and age. It is a common misconception that if you are running Linux you do not need to concern yourselves with privacy and security issues. Every operating system has risks and vulnerabilities that can be exploited and leave you exposed. In this article, … Read more