A to Z Linux Commands
All the Linux commands that have been covered on LHB organized in alphabetical order.
ยท Abhishek Prakash
How to echo a New Line in Bash Shell Scripts
Learn various ways of displaying a new line in the output of echo command in Linux.
ยท Abhishek Prakash
Deleting Specific Lines from a File in Linux Command Line
Here are a few usecases of deleting specific lines from a text file using the sed command.
ยท Abhishek Prakash
Find the PID and PPID of a Process in Linux
Learn how to find PID using a process name in Linux. Also learn to get the parent process ID (PPID) of the given process.
ยท Hunter Wittenborn
How to Perform Grep Search on All Files and in All Directories
The versatile grep command lets you perform search for a text in all the files and all the subdirectories of a directory. Here's how to do that.
ยท Abhishek Prakash
How to Set Up SSH on CentOS & RHEL
Learn to enable SSH on CentOS Linux systems. Also learn to configure it to follow the best practices.
ยท Abhishek Prakash
What is BusyBox in Linux? How to Use it?
Learn why BusyBox has suddenly gained a following among certain Linux users.
ยท Abhishek Prakash
Difference between Containerization and Orchestration: A Layman's Outlook
Learn the basic difference between containerization and orchestration through a simple analogy.
ยท Avimanyu Bandyopadhyay
Introduction to Virtualization: A Comprehensive Guide for Beginners
This is a complete beginner's introduction to virtualization. Learn types of virtualization, its essential components and benefits.
ยท Avimanyu Bandyopadhyay
Why is Kubernetes Called K8s?
What is K8 or K8s? Is it the same as Kubernetes or is there some difference? This quick article explains all of this.
ยท Abhishek Prakash
How to Sort Top Command Based on Memory Usage
Top command shows the most CPU consuming processes first. Learn how to sort top on memory usage instead.
ยท Abhishek Prakash
What's the Difference Between Git Switch and Checkout?
You can use both git checkout and git switch for switching between branches. But why do we have two commands for the same thing?
ยท Abhishek Prakash
How to Install Vim in a Docker Container
You are likely to not find Vim editor installed in your Docker container. Here's how to get it.
ยท Abhishek Prakash
How I Built a Homelab on the Budget
Want to set up a homelab? Here's how I used old hardware and open source software to build my homelab.
ยท Helder
Setting Hostname in Docker Compose
In this quick Docker tip, you'll learn how to set a hostname for your container via Docker Compose.
ยท Avimanyu Bandyopadhyay
Installing Alpine (or other Linux) on VPS or Bare Metal Server
VPS and cloud server providers offer a narrow selection of Linux distributions. Here's how I installed a distro of my choice on my OVH server.
ยท LHB Community
What is a Hypervisor? What's the Difference Between Type 1 and 2?
A quick look into how hypervisors work and the difference between their two types.
ยท Avimanyu Bandyopadhyay
What's the Difference Between curl and Wget?
curl and Wget are widely used for downloading files from the web in the Linux terminal. So, what's the difference and which one is better?
ยท Hunter Wittenborn
How to Upgrade Docker Containers Automatically When Updating Dockerized Web Apps
Updating WebApps is a regular task for sysadmins. Upgrading the containers that hold them is another extra effort. Automate that & make life easier.
ยท Avimanyu Bandyopadhyay
How to Change the Partition Scheme on Your Linux Server?
This tutorial focuses on Virtual Private Servers as a practical use case, but it's also a guide on how to reduce a partition size on any (Debian) Linux machine via the command line.
ยท LHB Community
What is a Homelab and Why Should You Have One?
Having a homelab setup has multiple advantages. Learn what it is and why you should consider a homelab for yourself.
ยท Helder
Docker Compose Up vs Start and Down vs Stop: Differences Explained
For a beginner on docker-compose, terms like docker-compose up, start, down and stop could be a quite overwhelming. This article explains the difference with detailed examples.
ยท Avimanyu Bandyopadhyay
Where are Docker Images, Containers and Volumes Stored on the Linux Host System?
Some quick tips to let you know where Docker Images, Containers and Volumes are located on your Linux server host.
ยท Avimanyu Bandyopadhyay
find Command Examples
Learn the super powerful and super useful find command with these practical examples.
ยท Abhishek Prakash
Useful Bash Commands You May Not Know About
Here are some lesser known but useful bash commands that will help make the shell scripts you write cleaner and more maintainable.
ยท Hunter Wittenborn