Courseiva
EX200Chapter 1 of 20Objective 1

Navigating the Red Hat EX200 Exam Environment

Navigating the Red Hat EX200 exam environment is the first and most critical skill you must master. This concept solves the problem of feeling lost when you are faced with a blank terminal screen instead of a familiar desktop interface. For someone studying EX200, understanding exactly how to move around the system, find files, and execute commands is the foundation for passing every other objective.

12 min read
Beginner
Updated Jul 23, 2026
Reviewed by Johnson Ajibi· Senior Network & Security Engineer · MSc IT Security

A simple way to picture Navigating the Red Hat EX200 Exam Environment

The GPS Navigation Analogy

A GPS device is a tool that guides you from one place to another using a digital map and satellite signals. In the same way, the Red Hat Enterprise Linux system provides a set of commands and interfaces to navigate through files, processes, and settings. When you first get into a car, you need to know where the ignition is, how to use the steering wheel, and what the dashboard symbols mean. Similarly, when you start the EX200 exam, you must understand how to log in, open a terminal, and recognise the command prompt. Your GPS gives you real-time directions; the Linux shell gives you real-time feedback on what you type. If you take a wrong turn, your GPS recalculates; in Linux, you get an error message that you can learn from. The map on your GPS shows streets and landmarks; the file system in Linux shows directories and files. Learning the basic commands like ls (list files), cd (change directory), and pwd (print working directory) is like learning to interpret the GPS screen: it tells you where you are and what is around you. Without this foundational skill, you cannot complete any task, just as you cannot drive to a destination without understanding your GPS. The exam environment is your car and the Linux commands are your GPS — learn them, and you will always find your way.

How It Actually Works

The Red Hat Enterprise Linux (RHEL) system is an operating system, which is the software that manages all the hardware and software on a computer. In the EX200 exam, you will be given a virtual machine — a simulated computer running inside another computer — that has RHEL installed. The primary way you interact with this system is through a command-line interface (CLI), which is a text-based window where you type commands instead of clicking icons. The most common CLI program is called a terminal or shell. The default shell in RHEL is called Bash (Bourne Again SHell). When you open a terminal, you see a prompt, which looks like this: [user@host ~]$. This prompt tells you your username, the computer's hostname, and your current working directory (the folder you are in). The tilde ~ means you are in your home directory. To navigate the file system, you use the command cd (change directory). For example, typing cd Documents moves you into the Documents folder. If you are lost, pwd (print working directory) shows your exact location in the system. To see what files and folders are in your current location, you type ls (list). The system uses a hierarchical file system, which is like a tree: the top is called root (represented by /), and all other directories branch out from there. Important directories include /etc (contains configuration files), /var (contains variable data like logs), /home (contains users' personal directories), and /tmp (temporary storage that clears on reboot). Files have permissions that control who can read, write, or execute them. You can see these permissions by typing ls -l (long listing). For example, -rw-r--r-- means the owner can read and write, while everyone else can only read. Another critical skill is using the manual pages, accessed with the command man followed by the command you want help with, like man ls. This opens a built-in help guide. You can exit the manual by pressing q. To run commands with administrative privileges, you use sudo (superuser do). For example, sudo yum install httpd installs a web server. The system logs all actions, and you can view logs in /var/log/messages. Knowing how to switch between virtual consoles (Ctrl+Alt+F1-F6) is also useful, as the exam may require you to work in multiple terminal sessions. The exam environment also includes a web-based interface called the Cockpit console for some tasks, but the CLI is the primary tool. There are also text editors like vim and nano that let you edit configuration files. Getting comfortable with these basics means you can move to any directory, check what is inside it, read files, and run commands — all without a mouse. This skill replaces the graphical desktop that most beginners expect.

This diagram shows the basic navigation flow from logging in to completing a file-related task in the RHEL exam environment.

Walk-Through

1

Log into the System

You are given a username and password. Type them at the login prompt. After a successful login, you see a Bash prompt. This is your entry point into the exam environment.

2

Run pwd to Orient Yourself

Type `pwd` and press Enter. This shows your current path, such as `/home/student`. Knowing where you are prevents navigation mistakes later.

3

List the Contents of the Current Directory

Type `ls -la` to see all files and folders, including hidden ones. The `-l` flag gives a long listing with permissions, and `-a` shows hidden files.

4

Navigate to the Target Directory

Use `cd` followed by the path. If the path is absolute (e.g., `cd /var/log`), you go there no matter where you are. If relative (e.g., `cd Documents`), it depends on your current location. Use `cd ..` to go up one level.

5

View the Contents of a File

Use `cat filename` to display the whole file at once, or `less filename` to scroll through it page by page. Press `q` to quit `less`. For a live view of a growing file, use `tail -f filename`.

6

Edit a Configuration File

Open a simple text editor like `nano` by typing `sudo nano /path/to/file`. Make your changes, then press Ctrl+X, then Y, then Enter to save and exit. Always use `sudo` when editing system files.

What This Looks Like on the Job

An IT professional administering RHEL servers in a data centre uses these navigation skills every single day, often under time pressure. For example, imagine a company running its e-commerce website on a cluster of RHEL servers. One server starts reporting errors — customers cannot add items to their cart. The IT admin needs to log in to that server, navigate to the correct log directory, examine log files, and identify the problem, all from the command line. Here is what that looks like step by step:

The admin connects to the server using SSH (Secure Shell) from their local computer. The connection command is ssh admin@server42.example.com.

Once connected, they are dropped into a Bash prompt. Their first step is to see where they are with pwd. They are in /home/admin.

They know application logs are stored in /var/log/app. They navigate there using cd /var/log/app.

They list files with ls -l to find the most recent log file, often named something like error.log or app.log.

They view the file with less error.log or tail -f error.log to see live updates while reproducing the error on a test browser.

They see a message about a database connection timeout. They need to edit the configuration file, which is in /etc/app/config.yml. They navigate to /etc/app and use sudo nano config.yml (with sudo because regular users cannot edit system config files).

After fixing the configuration, they restart the service using sudo systemctl restart app-service and verify it is running with sudo systemctl status app-service.

They also check that the fix worked by looking again at the logs with tail -20 /var/log/app/error.log.

Without the ability to navigate the file system and use basic commands, this simple troubleshooting task would be impossible. The same skills — cd, ls, pwd, cat, less, sudo, systemctl — are the exact skills tested in the early part of the EX200 exam. Real sysadmins use these commands hundreds of times a day, often in automated scripts. Understanding navigation is not just for passing an exam; it is the core of the job.

How EX200 Actually Tests This

The EX200 exam directly tests your ability to navigate the RHEL environment, specifically in the context of completing tasks without any graphical assistance. You are given a scenario and must use the command line to perform actions. Here is what you need to know:

- Question types that appear: You will be asked to locate specific files (e.g., 'find the file named config.txt in /opt/data'), change to specific directories, and run commands with options like ls -la. You may also need to read the contents of a file using cat or less, and then answer a question about its contents. Another common task is to create files or directories using touch and mkdir. - Traps they set: One common trap is that you are placed in an unusual starting directory, like /root or a temporary directory, and must use absolute paths (starting with /) rather than relative paths. Another trap is that file names may have spaces or special characters, requiring quotes or escape characters. For example, a file named My File.txt requires ls 'My File.txt' or ls My\ File.txt. The exam may also set restrictive permissions — you might try to cd into a directory and get 'Permission denied', requiring sudo or switching to the root user with su -. Another trap is that the system might have multiple shell sessions, and you need to switch between them using Ctrl+Alt+F2, F3, etc. - Correct answer pattern: Always use absolute paths when the question specifies the location. Use ls -la to see hidden files (those starting with a dot). Use pwd to confirm your location before doing destructive actions. If you need to edit a file, use nano (it is simpler than vim under exam pressure). Always check permissions with ls -l before trying to write to a file. When in doubt, use man to read the manual for a command. - Exact concepts they love to test: The file system hierarchy (know /etc, /var, /tmp, /home), the difference between relative and absolute paths, the use of . and .. (current and parent directory), and the environment variable $HOME. They also love testing tab key autocompletion (press Tab to finish a command or file name). They will test your ability to use history to see previous commands. - Key definitions to memorise: - pwd = print working directory - ls = list directory contents - cd = change directory - cat = concatenate (view) file contents - less = view file with pagination - man = manual pages - sudo = substitute user do (run as root) - touch = create an empty file - mkdir = make directory - rm = remove file - cp = copy - mv = move/rename

The exam will also test your ability to use wildcards: * matches any string, ? matches a single character. For example, ls *.txt lists all text files. Practice these until they are automatic.

Key Takeaways

Always start any navigation task by typing `pwd` to confirm your current working directory.

Use absolute paths (starting with `/`) when you are unsure of your location to avoid 'No such file or directory' errors.

The `ls -la` command shows all files, including hidden ones, along with detailed permissions.

Press the Tab key to autocomplete commands and file paths — it saves time and prevents typos.

When you need administrative privileges, use `sudo` before the command, not `su` (unless switching to root).

The file system tree starts at `/` (root), and important directories like `/etc`, `/var`, and `/home` have specific purposes — learn them.

Use `man <command>` to read the manual for any command you are unsure about.

Easy to Mix Up

These come up on the exam all the time. Here's how to tell them apart.

Absolute Path

Starts with a forward slash (/)

Always specifies the full path from root

Works no matter what your current directory is

Relative Path

Does not start with a slash

Depends on the current directory

Uses shortcuts like `..` for parent directory

cat

Displays entire file at once

Good for very small files

No scrolling — you see everything immediately

less

Shows one page at a time

Allows scrolling up and down

Use `q` to exit; good for large files

sudo

Runs a single command as root

No need to know root password (if in sudoers)

Leaves you in your own home directory after command

su -

Switches your entire session to root user

Requires the root password

Changes your home directory to /root

ls

Lists files in a simple column

Hides files starting with a dot (.)

Shows only names, not details

ls -la

Lists all files including hidden ones

Shows permissions, size, owner, and modification date

Most useful for troubleshooting

Watch Out for These

Mistake

I need to memorise every single Linux command to pass the exam.

Correct

You only need to know the most common commands and how to look up others using `man` or `--help`.

Beginners often feel overwhelmed by the sheer number of commands, but the exam only tests a defined set. Learning how to find information is more important than rote memorisation.

Mistake

The graphical desktop (GUI) is available and I can use it for everything.

Correct

The exam environment is command-line-only, with no desktop icons or menus. You must use the terminal.

Many beginners come from Windows or macOS and expect a graphical interface. The exam deliberately tests your comfort with the CLI.

Mistake

If I type a command wrong, the system will prompt me with the correct one.

Correct

The system only shows 'command not found' or a similar error. You must know the correct syntax yourself.

There is no 'did you mean?' feature in basic RHEL. New users expect the system to guess their intention, but it will not.

Mistake

I can use the mouse to copy and paste commands from the question sheet.

Correct

The exam environment may disable mouse integration. You will need to type all commands manually.

Beginners assume standard GUI copy/paste works. In some exam set-ups, the mouse does not work inside the virtual machine.

Mistake

Once I log in, I can immediately start working without checking my location.

Correct

Always run `pwd` first to confirm your current directory. Tasks often assume you are in a specific location.

New users often assume they are in their home directory, but the exam may start them in `/root` or a temp directory, causing failures with relative paths.

Do You Actually Know This?

Reveal each answer, then mark whether you got it right. Score 60%+ to unlock the next chapter.

Frequently Asked Questions

What is the difference between `pwd` and `ls`?

`pwd` shows you the full path of the directory you are currently in, like a 'you are here' marker. `ls` lists the files and folders inside that directory.

Why do I keep getting 'Permission denied' when I try to `cd` into a directory?

You do not have execute permission on that directory. Use `ls -l` to check permissions. If the directory belongs to root, you need `sudo` or switch to root with `su -`.

How do I go back to the previous directory I was in?

Type `cd -` (cd space dash). That jumps you back to the last directory you were in, not the parent directory.

What does the tilde `~` mean in the terminal prompt?

The tilde is a shortcut for your home directory. If your username is 'student', `~` means `/home/student`. It saves you from typing the full path.

Can I use the mouse to click and open files in the exam?

No. The exam runs in a text-based environment. You must use keyboard commands to navigate and open files.

What should I do if I forget the exact name of a command?

Type `man -k keyword` to search the manual for commands related to that keyword. For example, `man -k directory` shows commands that deal with directories.

Terms Worth Knowing

Keep going

You've finished Navigating the Red Hat EX200 Exam Environment. Continue through the EX200 study guide to build a complete picture of the exam.

Done with this chapter?