Skip to main content
Red Hat 🇺🇸 · 9 min read

How to Pass Red Hat RHCSA (EX200) in 2026: Complete Study Guide

Complete study guide for the Red Hat RHCSA EX200 exam. Covers essential tools, storage/LVM, services/boot process, SELinux, networking, and containers on RHEL 9.

# How to Pass Red Hat RHCSA (EX200) in 2026: Complete Study Guide The Red Hat Certified System Administrator (RHCSA) exam is the most respected entry-level Linux certification in the enterprise world. Unlike other vendor certifications that test whether you can memorize facts, RHCSA tests whether you can actually do the work. You will sit in front of a live RHEL 9 system with no internet access, no multiple choice questions, and a set of tasks to complete in three hours. Either the system works at the end or it doesn't. This guide covers everything you need to understand the exam structure, build the right skills, and earn the certification in 2026. ## Why RHCSA Is Different from Every Other Certification Most IT certifications follow a predictable format: read a textbook, memorize concepts, answer 60–90 multiple choice questions, pass or fail. RHCSA throws that model out entirely. The EX200 is a 100% performance-based exam. You receive a running RHEL 9 virtual machine with a set of broken or unconfigured systems. Your job is to make them work according to the task specifications. Red Hat evaluates your environment automatically after the session — the service either starts at boot or it doesn't, the firewall rule is either persistent or it evaporates on reboot, the LVM volume is either the correct size or it isn't. This format produces a certification that hiring managers genuinely trust. An RHCSA holder has proven they can administer a Red Hat system under time pressure without assistance. That is worth something in a way that a memorized multiple choice score simply is not. ## Where RHCSA Fits in the Red Hat Certification Path RHCSA is the foundation of the entire Red Hat certification architecture: - **RHCSA (EX200)** — Entry point, required prerequisite for RHCE - **RHCE (EX294)** — Red Hat Certified Engineer, focuses on Ansible automation - **RHCA** — Red Hat Certified Architect, requires five specialist exams on top of RHCE If you plan to pursue any Red Hat credential beyond the entry level, RHCSA is not optional — it is a hard prerequisite. Even if you stop at RHCSA, the credential is highly valued in enterprise Linux environments, cloud infrastructure roles, and DevOps pipelines where RHEL or CentOS Stream is a standard platform. ## Exam Facts at a Glance | Item | Detail | |------|--------| | Exam code | EX200 | | Duration | 3 hours | | Format | Performance-based only (no multiple choice) | | Passing score | 70% | | Cost | ~$400 USD | | Platform | RHEL 9 | | Delivery | Remote proctored or at a Red Hat testing center | Red Hat does not publish an official list of exam objectives broken into tidy numbered sections the way CompTIA or AWS do. Instead, they publish a general list of skills. This makes comprehensive preparation more important than objective-mapping for any single task. ## The Four Skill Domains You Must Master ### Domain 1: Essential Tools and File Management This domain covers the building blocks of Linux administration. You need fluency — not just familiarity — with the command line. Key skills include: - Navigate and manipulate the filesystem: `ls`, `cp`, `mv`, `rm`, `mkdir`, `find`, `locate` - Use `grep`, `awk`, `sed`, and pipes to process text output - Manage file permissions and ownership with `chmod`, `chown`, `chgrp` - Understand special permissions: SUID, SGID, sticky bit - Use hard links and symbolic links correctly - Archive and compress with `tar`, `gzip`, `bzip2`, `xz` - Access and use `man` pages, `info` pages, and `/usr/share/doc` The exam will give you tasks that require combining these tools. Knowing each command in isolation is not enough — you must be able to compose them into solutions under time pressure. ### Domain 2: Storage and LVM Management Storage configuration is one of the most heavily tested areas on RHCSA. You must be comfortable with the entire LVM workflow from raw disk to mounted filesystem, and you must understand the /etc/fstab format deeply enough that your mounts survive a reboot. Core storage skills include: - Partition disks with `fdisk` and `parted` - Create and manage LVM components: `pvcreate`, `vgcreate`, `lvcreate`, `lvextend`, `lvreduce` - Format filesystems: `mkfs.xfs`, `mkfs.ext4` - Mount filesystems persistently via `/etc/fstab` - Create and use swap space - Configure `autofs` for automatic mounting - Understand the difference between XFS (cannot shrink) and ext4 (can shrink) The LVM workflow appears on almost every RHCSA exam. Candidates who cannot execute the complete `pvcreate` → `vgcreate` → `lvcreate` → `mkfs` → `mount` chain from memory will lose significant points. ### Domain 3: Services, Boot Process, and Security This domain covers how RHEL 9 starts, how services are managed, and how two critical security layers — SELinux and firewalld — are configured. **systemd and service management:** - `systemctl start/stop/restart/reload/enable/disable/status` - Understanding service units vs target units - Setting the default boot target with `systemctl set-default` - Troubleshooting failed services with `journalctl` **Boot process:** - GRUB2 bootloader configuration - Kernel and initramfs loading - systemd as PID 1 and target initialization - Resetting a forgotten root password via the GRUB2 boot menu **SELinux:** - Understand enforcing, permissive, and disabled modes - Check and change modes with `getenforce`/`setenforce`/`/etc/selinux/config` - Manage file contexts with `restorecon` and `semanage fcontext` - Toggle SELinux booleans with `setsebool -P` - Read and interpret audit logs **firewalld:** - Manage zones and assign interfaces - Add/remove services and ports permanently - Always use `--reload` after `--permanent` changes ### Domain 4: Networking, Users, and Containers **Networking:** - Configure network interfaces with `nmcli` and `nmtui` - Set static IP addresses, DNS, and default gateway - Hostname configuration with `hostnamectl` - Basic connectivity testing with `ping`, `ss`, `ip addr` **User and group management:** - Create and modify users and groups with `useradd`, `usermod`, `groupadd` - Set and manage passwords with `passwd` and `chage` - Configure sudo access via `/etc/sudoers` and `/etc/sudoers.d/` - Understand `su` vs `sudo` **Containers with Podman:** - Pull and run container images with `podman pull` and `podman run` - Manage container lifecycle with `podman start/stop/rm` - Configure rootless containers (no root required) - Generate and install systemd unit files with `podman generate systemd` ## What Makes This Exam Uniquely Challenging The performance-based format creates a category of difficulty that no multiple choice exam can replicate. Three challenges stand out: **Time pressure with cascading dependencies.** Tasks are not independent — a misconfigured storage volume in Task 3 may break the service configuration in Task 7. Unlike a multiple choice exam where a wrong answer costs one point, a wrong early configuration on RHCSA can invalidate several subsequent tasks. **Persistence is mandatory.** After your session, the evaluator reboots your system. Everything must survive the reboot. A service that runs but is not enabled will fail the evaluation. An fstab entry with a typo will cause a boot failure that fails additional tasks. You must test persistence, not just immediate functionality. **No documentation access.** You cannot use the internet during the exam. You can use `man` pages and system documentation in `/usr/share/doc`, which makes knowing where to find information within the system itself an important skill. ## Resources for RHCSA Preparation **Red Hat Free Developer Subscription.** Red Hat offers a no-cost individual developer subscription at developers.redhat.com. This gives you access to full RHEL 9 installation media and lets you run practice environments on your own hardware or in a VM. This is the correct platform to study on — not CentOS or Fedora, which have meaningful differences in behavior. **RHEL 9 Learning Path on Red Hat Learning.** Red Hat's official learning portal includes free courses covering RHEL 9 administration basics. The RH124 and RH134 courses map directly to the RHCSA objectives and are the official preparation track. **"RHCSA Red Hat Enterprise Linux 9" by Sander van Vugt.** This is the most widely recommended third-party book for RHCSA preparation. Van Vugt is a Red Hat certified instructor and the book is structured around hands-on labs that mirror the exam format. The accompanying video series from O'Reilly Learning is equally strong. **KVM or VirtualBox with RHEL 9 VMs.** Set up at minimum two RHEL 9 virtual machines — one to configure and one to break and recover. The ability to reset a VM to a snapshot and redo tasks repeatedly is the most important practice technique available. ## 8-Week Study Plan **Weeks 1–2: Essential Tools and Foundations** Daily lab work: filesystem navigation, permissions, grep/awk/sed text processing, file archiving. Goal: no hesitation on any basic command. Complete all tasks in your study guide's foundational chapter from memory. **Weeks 3–4: Storage and LVM** Daily lab work: partition a disk, create a VG and LV, format with XFS and ext4, mount persistently via fstab. Practice extending LVs with `lvextend -r`. Break the fstab and recover from it. Understand the XFS vs ext4 shrink limitation until it is automatic knowledge. **Weeks 5–6: Services, Boot, SELinux, and firewalld** Daily lab work: manage systemd services and targets, configure SELinux contexts with both `restorecon` and `semanage fcontext`, manage firewalld zones and services with `--permanent --reload`. Practice root password recovery via GRUB2 until you can do it in under 3 minutes. **Week 7: Networking, Users, and Containers** Daily lab work: configure static IPs with `nmcli`, manage users and sudo access, run Podman containers, generate systemd unit files from containers. Test that containers start at boot via systemd. **Week 8: Timed Practice Exams** Obtain or build a set of practice tasks covering all four domains. Run each practice set under a 3-hour timer. After the timer, reboot your VM and verify every task result survived. Identify gaps and return to targeted lab work for those topics. ## The Bottom Line RHCSA is a challenging certification that rewards genuine skill over memorization. The three-hour performance-based format is demanding, but it is also entirely learnable with consistent hands-on practice. Candidates who spend 60–80 hours in a real RHEL 9 environment — actually running commands, breaking things, and recovering — pass at high rates. Candidates who only read about Linux administration do not. Start with the Red Hat developer subscription, build two VMs, and begin working through the task list every day. The certification is achievable in eight weeks of focused effort, and the skills you build along the way are directly applicable to any enterprise Linux environment you will work in.

Comments

Sign in to leave a comment.

No comments yet. Be the first!

Comments are reviewed before publication.