The Ultimate RHCSA Cheat Sheet for Exam Day
Published On: 16 January 2025
Objective
Red Hat Certified System Administrator (RHCSA) exam preparation may be difficult, but it can be made easy with a professional and well-organized cheat sheet. This guide was created to help you learn key tools and concepts, starting with the fundamentals and progressing to more complicated areas. Use it to solidify your learning and approach the test with confidence and accuracy.
Core Commands and Utilities
-
File and Directory Management
Managing files and directories is a fundamental skill for any Linux administrator. Here are the essential commands:
-
ls: List directory contents
-
Inspects files and directories in a specific location, ensuring quick navigation and status checks.
-
Syntax:
ls [options] [path]
-
Example:
ls -l for a detailed view, ls -a to show hidden files.
-
-
cp: Copy files or directories.
-
Duplicates files or creates backups of directories.
-
Syntax:
cp [options] source destination
-
Example:
cp -r source/ destination/ to copy directories recursively.
-
-
mv: Move or rename files or directories
-
Relocates files or renames them within the filesystem.
-
Syntax:
mv [options] source destination
-
Example:
mv oldname newname to rename a file.
-
-
rm: Remove files or directories.
-
Deletes files or directories. Use with caution, especially with -rf.
-
Syntax:
rm [options] file_or_directory
-
Example:
rm -rf directory/ for forced, recursive deletion.
-
-
find: Search for files or directories based on criteria.
-
Locates files or directories using various attributes like name, size, or modification date.
-
Syntax:
find [path] [options]
-
Example:
find /path -name "filename" to search for a file by name.
-
-
Text Processing
Linux provides powerful tools for text processing, critical for parsing logs and configuration files:
-
grep: Search text using patterns.
-
Quickly locates specific strings or patterns within files for troubleshooting or analysis.
-
Syntax:
grep [options] pattern file
-
Example:
grep "pattern" file to find matching lines.
-
-
awk: Analyze and manipulate text.
-
Extracts and processes data from structured text files, such as logs or configuration files.
-
Syntax:
awk [options] 'program' file
-
Example:
awk '{print $1}' file to print the first column.
-
-
sed: Perform text transformations.
-
Modifies file content by substituting, deleting, or inserting text.
-
Syntax:
sed [options] 'script' file
-
Example:
sed 's/old/new/g' file to replace text globally.
-
-
vim / nano: Edit files.
-
Edits configuration files or scripts directly from the terminal.
-
Syntax:
vim file or nano file
-
Example:
Use vim for advanced editing or nano for simplicity.
-
-
System Monitoring
Monitoring system resources helps maintain optimal performance and identify issues:
-
top: Real-time process monitoring.
-
Provides a live view of running processes and their resource usage.
-
Syntax:
top [options]
-
Example:
top -u username to filter by user.
-
-
df: Check disk space usage.
-
Displays available and used disk space on all mounted filesystems.
-
Syntax:
df [options] [path]
-
Example:
df -h for human-readable format.
-
-
du: Summarize file/directory size.
-
Helps identify large files or directories consuming disk space.
-
Syntax:
du [options] [path]
-
Example:
du -sh /directory for concise output.
-
-
free: View memory usage.
-
Shows total, used, and available memory, including swap.
-
Syntax:
free [options]
-
Example:
free -m for memory in megabytes.
-
-
ps: Display process information.
-
Lists currently running processes along with details such as PID, CPU, and memory usage.
-
Syntax:
ps [options]
-
Example:
ps aux | grep processname to find specific processes.
-
System Configuration and Management
-
Network Configuration
Networking is a critical area for administrators, and these commands are indispensable:
-
nmcli: Manage network connections.
-
Configures network settings, including connections, devices, and profiles.
-
Syntax:
nmcli [object] [command]
-
Example:
nmcli connection show to list connections.
-
-
ip: Advanced network configuration.
-
Provides detailed network information and allows for configuring IP addresses, routes, and interfaces.
-
Syntax:
ip [options] object command
-
Example:
ip addr show to display IP addresses.
-
-
ping: Test network connectivity.
-
Tests reachability of a host and measures round-trip time for messages.
-
Syntax:
ping [options] destination
-
Example:
ping -c 4 google.com to send 4 packets.
-
-
User and Group Management
Efficient user and group management ensures system security and accessibility:
-
useradd: Add a new user.
-
Creates user accounts, assigning default configurations.
-
Syntax:
useradd [options] username
-
Example:
useradd -m username to create a user with a home directory.
-
-
usermod: Modify a user.
-
Alters user properties, such as group memberships.
-
Syntax:
usermod [options] username
-
Example:
usermod -aG groupname username to add a user to a group.
-
-
passwd: Set or update passwords.
-
Secures user accounts by setting or updating passwords.
-
Syntax:
passwd [options] [username]
-
Example:
passwd username to change a user’s password.
-
-
id: Display user/group IDs.
-
Displays detailed information about user and group identifiers.
-
Syntax:
id [options] [username]
-
Example:
id username to show user’s UID and GIDs
-
Service Management
Linux services are managed using systemd tools. Key commands include:
-
systemctl: Manage systemd services.
-
Enables starting, stopping, restarting, and querying services.
-
Syntax:
systemctl [command] [unit]
-
Example:
systemctl status servicename to check service status.
-
-
journalctl: Access system logs.
-
Provides access to logs for debugging and monitoring system activity.
-
Syntax:
journalctl [options]
-
Example:
journalctl -u servicename for service-specific logs.
-
Security and Access Control
-
SELinux Management
SELinux enhances security by enforcing policies. Use these commands to manage it:
-
sestatus: Check SELinux status.
-
Displays whether SELinux is enforcing, permissive, or disabled.
-
Syntax:
sestatus
-
Example:
sestatus to verify the current SELinux mode.
-
-
setenforce: Toggle SELinux modes.
-
Dynamically changes the operational mode of SELinux without requiring a reboot.
-
Syntax:
setenforce [0|1]
-
Example:
setenforce 0 to switch to permissive mode.
-
-
semanage: Define and modify SELinux policies.
-
Adjusts SELinux policies, including file contexts, ports, and booleans.
-
Syntax:
semanage [object] [options]
-
Example:
semanage fcontext -a -t httpd_sys_content_t '/web(/.*)?' to configure file contexts.
-
-
Firewall Management
Ensure your system is secure by managing firewall rules effectively:
-
firewall-cmd: Configure firewall rules.
-
Adjusts firewall settings dynamically and persistently.
-
Syntax:
firewall-cmd [options]
-
Example:
firewall-cmd --add-service=http --permanent to allow HTTP traffic.
-
-
iptables: Advanced firewall management.
-
Configures packet filtering rules for managing network traffic.
-
Syntax:
iptables [options]
-
Example:
iptables -L to list current rules.
-
Advanced Storage and Filesystem Operations
-
Partitioning and Filesystems
Disk management and formatting are fundamental for system setup:
-
fdisk: Manage disk partitions interactively.
-
Creates, deletes, and modifies disk partitions.
-
Syntax:
fdisk [options] device
-
Example:
fdisk /dev/sda to modify partitions.
-
-
parted: Command-line partitioning.
-
Handles partition tables and disk partitions for modern filesystems.
-
Syntax:
parted [options] device
-
Example:
parted /dev/sda print to view partition details.
-
-
mkfs: Format partitions.
-
Creates a filesystem on a partition to prepare it for data storage.
-
Syntax:
mkfs -t filesystem_type device
-
Example:
mkfs.ext4 /dev/sda1 to create an ext4 filesystem.
-
-
Mounting and Unmounting
Mounting enables access to filesystems:
-
mount: Attach filesystems.
-
Temporarily connects a filesystem to a specific directory.
-
Syntax:
mount [options] device directory
-
Example:
mount /dev/sda1 /mnt to mount a partition.
-
-
umount: Detach filesystems.
-
Disconnects a mounted filesystem from its directory.
-
Syntax:
umount [options] directory_or_device
-
Example:
umount /mnt to unmount a filesystem.
-
-
blkid: Display UUIDs and labels of block devices.
-
Provides unique identifiers for devices to ensure consistency in mounting.
-
Syntax:
blkid [options] device
-
Example:
blkid /dev/sda1 to view the UUID.
-
Backup, Recovery, and Automation
-
Backup Tools
Prevent data loss with these backup utilities:
-
tar: Archive and compress files.
-
Bundles multiple files into a single archive, with optional compression.
-
Syntax:
tar [options] -f archive file_or_directory
-
Example:
tar -czvf archive.tar.gz /directory to create a compressed archive.
-
-
rsync: Synchronize files/directories efficiently.
-
Transfers and synchronizes files across local or remote systems, supporting incremental updates.
-
Syntax:
rsync [options] source destination
-
Example:
rsync -av /source/ /destination/ for incremental backups.
-
-
Recovery Tools
Prepare for emergencies with recovery commands:
-
fsck: Repair filesystems.
-
Scans and repairs filesystem errors on disk partitions.
-
Syntax:
fsck [options] device
-
Example:
fsck /dev/sda1 to check and repair a specific partition.
-
-
grub2-mkconfig: Regenerate GRUB configuration.
-
Updates the GRUB bootloader configuration after system changes.
-
Syntax:
grub2-mkconfig -o /boot/grub2/grub.cfg
-
Example:
Use after kernel updates to ensure the GRUB menu reflects changes.
-
-
Automation and Scheduling
Automate routine tasks to save time and reduce errors:
-
crontab: Schedule repetitive tasks.
-
Runs scheduled commands or scripts at specified times or intervals.
-
Syntax:
crontab [options]
-
Example:
crontab -e to edit and schedule jobs, such as a daily backup script.
-
-
at: Schedule one-time tasks.
-
Executes a command at a specific time in the future.
-
Syntax:
at [options] time
-
Example:
echo "shutdown -h now" | at 22:00 to schedule a system shutdown at 10 PM.
-
-
systemd timers: Advanced task scheduling.
-
Replaces traditional cron jobs with more powerful and flexible timers.
-
Syntax:
Create a timer and service file in /etc/systemd/system/
-
Example:
Use systemctl enable timername.timer to activate a timer.
-
Conclusion
With its coverage of key commands, tools, and recommended practices, this updated cheat sheet offers a thorough resource for RHCSA preparation. Gaining practical experience and becoming proficient with these commands can boost your self-assurance and productivity when handling Red Hat-based systems. Keep in mind to:
-
Pay attention to practical labs and comprehend the RHCSA exam's goals.
-
Practice real-world situations and exam circumstances on a regular basis.
-
During preparation, make use of official documentation and man pages.
-
During the test, maintain your composure and divide difficult tasks into smaller, more doable chunks.
You can prove your proficiency as a Red Hat Certified System Administrator and ace the RHCSA test with this cheat sheet and extensive practice. RHCSAGuru offers hands-on labs to further your practice and preparation, giving you an edge with real-world scenarios.
I wish you luck!