Skip to main content

Latest Tutorials

Latest
How to SSH into a Docker Container
Doing Things in Docker

How to SSH into a Docker Container

You can easily enter docker container but if you want to access it via SSH directly, here's how to configure SSH access to a container.

ยท Debdut Chakraborty

Using Bash printf Command for Printing Formatted Outputs
Bash Tips

Using Bash printf Command for Printing Formatted Outputs

You may print simple outputs with echo command but that's not enough for complicated formatted outputs.

ยท Abhishek Prakash

Terraform vs Ansible: What's the difference and which one you should use?
DevOps

Terraform vs Ansible: What's the difference and which one you should use?

Preparing your Infrastructure as Code solution? Ansible and Terraform are two of the most popular choices. But what's the difference?

ยท Rakesh Jain

List only directories in Linux
Tips

How to List Only Directories in Linux

Listing the contents of a directory is easy. But what if you want to list only the directories, not files and links?

ยท Abhishek Prakash

YAML basics
Tips

YAML Basics Every DevOps Engineer Must Know

As a DevOps engineer, you'll be dealing with YAML files a lot. It is always a good idea to understand the basic YAML syntax.

ยท Rakesh Jain

Complete Beginner's Guide to Kubernetes Cluster Deployment on CentOS (and Other Linux)
Using Kubernetes

Complete Beginner's Guide to Kubernetes Cluster Deployment on CentOS (and Other Linux)

A complete step-by-step beginner's guide to deploy Kubernetes cluster on CentOS and other Linux distributions.

ยท Rakesh Jain

delete service in Kubernetes
Using Kubernetes

How to Delete a Service in Kubernetes

Learn two ways to delete a service in Kubernetes.

ยท Rakesh Jain

Process Substitution: An Uncommon but Advanced Way for Input/Output Redirection in Linux
Bash Tips

Process Substitution: An Uncommon but Advanced Way for Input/Output Redirection in Linux

Multiple commands and input/output redirections can be effectively used with bash process substitution.

ยท Abhishek Prakash

Automatically Logout Inactive Users From Linux System
Tips

Automatically Logout Inactive Users From Linux System

Here are two ways you can automatically log out idle users from your Linux system.

ยท Abhishek Prakash

Deploy Talkyard with Docker
Tutorial

Deploying Talkyard Forum Under Nginx With Docker

Deploying Talkyard forum is a tricky task. Follow this hybrid docker approach to deploy Talkyard on a server with other web-services.

ยท Abhishek Prakash

How to Install Docker Compose on Ubuntu
Docker Tutorials

How to Install Docker Compose on Ubuntu

Here are two ways to install Docker Compose on Ubuntu.

ยท Abhishek Prakash

drain nodes in Kubernetes
Using Kubernetes

How to Drain a Node in Kubernetes

Learn how to properly drain nodes in Kubernetes to prepare for maintainance.

ยท Rakesh Jain

Fixing Broken Pipe Error With SSH Connection
SSH Troubleshoot

Fixing Broken Pipe Error With SSH Connection

SSH connection getting disconnected due to inactivity? Here's how to handle it.

ยท Abhishek Prakash

adding labels to nodes
Using Kubernetes

How to Add or Remove Labels to Nodes in Kubernetes

Learn to add labels to nodes in Kubernetes, change the labels and remove those labels later.

ยท Rakesh Jain

kubectl apply vs create
Using Kubernetes

kubectl apply vs create: Which One to Use for Creating Resources in Kubernetes Cluster Environment?

Two different approaches for creating resources in Kubernetes cluster. What's the difference?

ยท Rakesh Jain

Linux server monitored by a sysadmin
Tips

12 Things to do After Installing a Linux Server

Just deployed a server? Here are some recommended things to do after installing Linux server to make it more secure. Automated script is also provided.

ยท LHB Community

Linux troubleshooting
Troubleshooting

Handling "System has not been booted with systemd as init system" Error

Learn how to fix "System has not been booted with systemd as init system (PID 1). Can't operate." with Ubuntu Linux on WSL.

ยท Abhishek Prakash

Delete Pods in Kubernetes
Using Kubernetes

How to Delete Pods in Kubernetes [Quick K8s Tips]

Deleting a Kubernetes pod is very simple with the kubectl delete pod command but there are specific steps to minimize disruption for your application.

ยท Rakesh Jain

Cloud servers with free plans
Resources

Top Free Linux Cloud Servers to Test or Host Your Web Applications

You can try Linux cloud server platforms for free. Here's how!

ยท Abhishek Prakash

Delete a Kubernetes Deployment
Using Kubernetes

How to Delete a Kubernetes Deployment [Quick K8s Tips]

Here are two ways to delete Kubernetes deployments.

ยท Rakesh Jain

Pipe redirection
Explain

What are Pipes in Linux? How does Pipe Redirection Works?

There are two kinds of pipes in Linux: named and unnamed. Here's a detailed look at pipe redirection.

ยท Debdut Chakraborty