Author: Danilo

Infrastructure Engineer with experience in Virtualization, Linux, Windows Server and learning automation using Python. DPC Virtual Tips was created to share practical tutorials, lab experiences and troubleshooting guides focused on enterprise infrastructure technologies.

Scheduling tasks on Red Hat Enterprise Linux is an essential skill for system administrators who need to automate maintenance activities, scripts, and recurring operations. RHEL provides two powerful tools for this purpose: at for one-time scheduled jobs and cron for recurring tasks. In this guide, we will explore how to use at and cron on RHEL, including daemon configuration, job management commands, and practical scheduling examples. These tools allow administrators to automate processes without requiring manual execution. When you need to automate tasks on Red Hat Enterprise Linux, you have two go-to tools: The “at” command at queues single-run jobs…

Read More

Creating a Network Install Server on RHEL 8 allows administrators to provide operating system installation files over the network instead of relying on local ISO media. This approach is especially useful in virtualization environments where multiple virtual machines need to be deployed efficiently. In this guide, we will demonstrate how to configure an HTTP-based Network Install Server using Apache (httpd) on Red Hat Enterprise Linux 8. The server will host the RHEL installation files and make them available for virtual machine installations managed through KVM and virt-manager. If you’re using KVM with virt-manager to manage your virtual machines, there are…

Read More

Running VMs on RHEL 8 allows administrators to transform a Red Hat Enterprise Linux system into a virtualization host capable of creating and managing virtual machines. Using KVM, RHEL 8 provides a powerful virtualization platform integrated directly with the Linux kernel. We’ve written some interesting articles that may help you before following them: How to install RHEL 8 on Lab – https://dpcvirtualtips.com/how-to-install-rhel-8-on-lab/Configuring Bonding + Bridge Interface on RHEL 8 – https://dpcvirtualtips.com/configuring-bonding-bridge-interfaces-on-rhel-8/ First and foremost: What is KVM? KVM (Kernel-based Virtual Machine) is a full virtualization solution built into the Linux kernel. It allows you to run multiple virtual machines (VMs),…

Read More

Configuring bond and bridge interfaces on RHEL 8 is an important task for Linux administrators working with advanced networking, virtualization, and high-availability environments. These technologies improve network reliability by combining multiple interfaces and creating flexible virtual network connections. In this guide, we will demonstrate how to create a bond interface and associate it with a bridge interface using NetworkManager tools such as nmcli. The configuration example shows how to combine physical network interfaces into a logical bond and use it as the foundation for a bridge connection. Bond Interface A bond interface aggregates multiple physical or virtual network interfaces into…

Read More

Working with Stratis on RHEL 8 provides an overview of this modern local storage management solution available for Red Hat Enterprise Linux environments. Stratis simplifies storage administration by combining advanced features such as thin provisioning, snapshots, and filesystem management through a unified interface. In this guide, we will explore the main concepts behind Stratis, including pools, block devices, filesystems, and snapshots. We will also demonstrate how to install, enable, and configure Stratis using practical command-line examples on RHEL 8. First and foremost: What is Stratis? Stratis is a local storage management solution built for Red Hat Enterprise Linux. It abstracts…

Read More

Virtual Data Optimizer (VDO) on RHEL 8 is a storage optimization technology that provides inline data reduction through deduplication, compression, and thin provisioning. It helps administrators improve storage efficiency by reducing redundant data while presenting larger logical capacity than the available physical storage. In this guide, we will explore how VDO works in Red Hat Enterprise Linux 8 and demonstrate practical deployment scenarios. The examples cover creating VDO volumes, formatting them with XFS, and integrating VDO with LVM for flexible storage management. Introduction to Virtual Data Optimizer (VDO) Virtual Data Optimizer (VDO) is a Linux kernel module and user-space toolset…

Read More