Monitor-Socket-Connections-ss-command

Top 14 SS Command Examples to Monitor Socket Connections

SS is a command line tool that displays socket statistics and monitor network connections of a Linux system. It has replaced the netstat command which has now been deprecated. The ss command is much faster and prints more detailed network statistics than the netstat command. … Read more

Install-PHP-8-Debian12

How to Install PHP 8 on Debian 12 – Simple Guide

In the world of web development, having the right tools at your disposal is crucial. PHP 8, the latest version of the popular scripting language, brings with it a host of new features and improvements that can elevate your web projects. If you’re running Debian … Read more

Install-Minikube-Debian12

How to Install Minikube on Debian 12 Step-by-Step

If you are looking for an easy and cost-effective way of getting started with Kubernetes, then Minikube is your go to resource. So what is Minikube? Minikube is a versatile tool that allows you to run a single-node Kubernetes cluster on your local machine. This … Read more

Install-Cockpit-on-Debian10

How to Install Cockpit Web Console on Debian 10

Cockpit is free and open-source remote server management web console. Using cockpit web console one can do almost all day to day administrative tasks without login in server’s cli. Apart from administrative tasks, Cockpit provides real time RAM, CPU and DISK utilization report of your … Read more

Replace-Strings-Lines-Ansible

How to Replace Strings and Lines with Ansible

Ansible provide multiple ways that you can use to replace a string, an entire line or words that match a certain pattern. There are two modules that you can use to achieve this: the replace module and the inline module. We are going to dive … Read more

Install-GrayLog-Server-CentOS8

How to Install Graylog with Elasticsearch on CentOS 8

This guide takes you through the installation of Graylog with Elasticsearch 7.x on CentOS 8. Graylog is an opensource log management solution that was founded in 2009 for capturing and centralizing real-time logs from various devices in a network. It’s a perfect tool for analyzing … Read more

Setup-Private-Docker-Registry-Kubernetes

How to Setup Private Docker Registry in Kubernetes (k8s)

It is always recommended to have private docker registry or repository in your Kubernetes cluster. Docker private registry allows the developers to push and pull their private container images. Once the application’s containers are pushed to private registry then developers can use the path of … Read more

Tee-Command-Examples-Linux

9 tee Command Examples in Linux

Linux Tee command is a command line tool, it reads from the standard input and write the result to standard output and files at the same time.In other words, we can say, tee command in Linux used for hitting two birds with one stone: reading … Read more

Linux-Chmod-Examples

9 Quick chmod Command Examples in Linux

Chmod command in Linux is used to change or assign permissions on files and directories. In Linux / Unix systems, accessibility to files and directories is determined by file ownership and permissions. In a previous article, we looked at how to manage file & directory … Read more