Step-by-Step Guide: Installing RHEL 9.5 on VMware Workstation
Hi there! I'm Dinesh, a passionate Cloud and DevOps enthusiast. I love to dive into the latest new technologies and sharing my journey through blog.
Search for a command to run...
Hi there! I'm Dinesh, a passionate Cloud and DevOps enthusiast. I love to dive into the latest new technologies and sharing my journey through blog.
No comments yet. Be the first to comment.
As a Linux Administrator, you need a broad and deep skill set that covers system management, security, networking, automation, and troubleshooting. Here’s a structured guide to what you should learn, categorized by level of expertise: 🟢 Beginner Le...
1. Difference between Docker and Kubernetes Docker → Builds and runs containers.Kubernetes → Orchestrates containers across multiple nodes. Key points: Docker = container runtime. Kubernetes = container orchestration tool. Kubernetes provides auto...
In this session, we learn how to monitor a Kubernetes cluster using Prometheus and Grafana.This is not just theory — there is a GitHub repository containing all installation commands and demo steps.The repo will also be enhanced later with advanced K...
1. What is a ConfigMap in Kubernetes? A ConfigMap is used to store non-sensitive configuration data that your application needs — such as: Database port Connection type Any general configuration values In normal applications (non-Kubernetes), de...
Kubernetes normally supports built-in resources like: Deployment Service Pod ConfigMap Secret Ingress These are called native resources. Sometimes companies (Istio, ArgoCD, Prometheus Operator, Kyverno, etc.) want to add new features that Kub...
1. Why Kubernetes Services Are Needed When a Pod is created in Kubernetes, it receives a dynamic IP address.If the Pod dies and restarts, its IP changes.So other Pods (like checkout → payments) cannot rely on Pod IP because it changes, creating issue...
To install RHEL 9.5 (Red Hat Enterprise Linux) in VMware Workstation or VMware Player on your laptop, follow these step-by-step instructions:
VMware Workstation/Player installed on your laptop.
RHEL 9.5 ISO file – Download from Red Hat website
Open VMware Workstation/Player.
Click "Create a New Virtual Machine".

Choose:
Installer disc image file (iso): Browse and select the downloaded rhel-9.5-x86_64-dvd.iso.

Click Next.
Select Linux.
Choose Red Hat Enterprise Linux 9 (64-bit).
Click Next.

Give a name like RHEL9.5.
Choose a location to store the VM files.

Allocate:
2 processors.

2–4 GB RAM (or more, depending on your laptop).






Choose Store virtual disk as a single file.


Power on the virtual machine.

Select "Install Red Hat Enterprise Linux 9.5".

Proceed with the installation steps:
Choose language and continue.

Configure installation destination (select default disk).

Select Done.

Set Time & Date, Software Selection, and Root Password.



Create a user account.

Click Begin Installation.


After installation, reboot the VM.

Log in with the user you created.


Register RHEL (if needed) with Red Hat subscription:
sudo subscription-manager register

Update packages:
sudo dnf update -y
