Red Hat EX200 Online Practice
Questions and Exam Preparation
EX200 Exam Details
Exam Code
:EX200
Exam Name
:Red Hat Certified System Administrator (RHCSA)
Certification
:Red Hat Certifications
Vendor
:Red Hat
Total Questions
:134 Q&As
Last Updated
:Jul 11, 2026
Red Hat EX200 Online Questions &
Answers
Question 21:
Create User Account.
Create the following user, group and group membership:
Adminuser group
User natasha, using adminuser as a sub group
User Harry, also using adminuser as a sub group
User sarah, can not access the SHELL which is interactive in the system, and is not a member of adminuser, natashaharrysarah password is redhat.
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
groupadd adminuser useradd natasha -G adminuser useradd haryy -G adminuser useradd sarah -s /sbin/nologin Passwd user name // to modify password or echo redhat | passwd --stdin user name id natasha // to view user group.
Question 22:
One Logical Volume named lv1 is created under vg0. The Initial Size of that Logical Volume is 100MB. Now you required the size 500MB. Make successfully the size of that Logical Volume 500M without losing any data. As well as size should be increased online.
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
The LVM system organizes hard disks into Logical Volume (LV) groups. Essentially, physical hard disk partitions (or possibly RAID arrays) are set up in a bunch of equal sized chunks known as Physical Extents (PE). As there are several
other concepts associated with the LVM system, let's start with some basic definitions:
Physical Volume (PV) is the standard partition that you add to the LVM mix. Normally, a physical volume is a standard primary or logical partition. It can also be a RAID array.
Physical Extent (PE) is a chunk of disk space. Every PV is divided into a number of equal sized PEs. Every PE in a LV group is the same size. Different LV groups can have different sized PEs.
Logical Extent (LE) is also a chunk of disk space. Every LE is mapped to a specific PE.
Logical Volume (LV) is composed of a group of LEs. You can mount a file system such as /home and /var on an LV.
Volume Group (VG) is composed of a group of LVs. It is the organizational group for LVM. Most of the commands that you'll use apply to a specific VG.
1.
Verify the size of Logical Volume: lvdisplay /dev/vg0/lv1
2.
Verify the Size on mounted directory: df -h or df -h mounted directory name
3.
Use: lvextend -L+400M /dev/vg0/lv1
4.
ext2online -d /dev/vg0/lv1 to bring extended size online.
5.
Again Verify using lvdisplay and df -h command.
Question 23:
Part 1 (on Node1 Server)
Task 5 [Controlling Access to Files with ACLs]
Copy the file /etc/fstab to /var/tmp. Configure the following permissions on /var/tmp/fstab.
The file /var/tmp/fstab is owned by root user
The file /var/tmp/fstab is belongs to the root group
The file /var/tmp/fstab should be executable by anyone
The user harry is able to read and write on /var/tmp/fstab
The user natasha can neither read or write on /var/tmp/fstab
All other users (Current or future) have the ability to read /var/tmp/fstab
* [root@node2 ~]# vim /etc/fstab UUID=7397a292-d67d-4632-941e-382e2bd922ce /data xfs defaults 0 0 [root@node2 ~]# mount UUID=7397a292-d67d-4632-941e-382e2bd922ce /data [root@node2 ~]# reboot [root@node2 ~]# df -hT Filesystem Type Size Used Avail Use% Mounted on /dev/mapper/datavg-datalv xfs 3.9G 61M 3.9G 2% /data
Question 25:
Install the Kernel Upgrade.
Install suitable kernel update from:
http://server.domain11.example.com/pub/updates.
Following requirements must be met:
Updated kernel used as the default kernel of system start-up.
The original kernel is still valid and can be guided when system starts up.
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
Using the browser open the URL in the question, download kernel file to root or home directory. uname –r// check the current kernel version rpm –ivh kernel-*.rpm vi /boot/grub.conf// check Some questions are: Install and upgrade the kernel as required. To ensure that grub2 is the default item for startup. Yum repo : http://content.example.com/rhel7.0/x86-64/errata OR uname -r // check kernel Yum-config-manager --add-repo=“http://content.example.com/rhel7.0/x86-64/ errata” Yum clean all Yum list kernel// install directly Yum -y install kernel// stuck with it, do not pipe! Please do not pipe! Default enable new kernel grub2-editenv list// check Modify grub2-set-default “kernel full name” Grub2-mkconfig –o/boot/grub2/grub.cfg// Refresh
Question 26:
The user authentication has been provided by ldap domain in 192.168.0.254. According the following requirements to get ldapuser.
-LdapuserX must be able to login your system, X is your hostname number. But the ldapuser's home directory cannot be mounted, until you realize automatically mount by autofs server.
-All ldap user's password is "password".
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
system-config-authentication and
Question 27:
Part 1 (on Node1 Server)
Task 14 [Managing SELinux Security]
You will configure a web server running on your system serving content using a non- standard port (82)
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
*
[root@node1 ~]# curl http://node1.domain15.example.com curl: (7) Failed to connect to node1.domain15.example.com port 80: Connection refused [root@node1 ~]# yum install httpd
[root@node1 ~]# systemctl enable --now httpd
Created symlink /etc/systemd/system/multi-user.target.wants/httpd.service /usr/lib/systemd/system/httpd.service.
Create a volume group, and set 16M as a extends. And divided a volume group containing 50 extends on volume group lv, make it as ext4 file system, and mounted automatically under /mnt/data.
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
# pvcreate /dev/sda7 /dev/sda8 # vgcreate -s 16M vg1 /dev/sda7 /dev/sda8 # lvcreate -l 50 -n lvm02 # mkfs.ext4 /dev/vg1/lvm02 # blkid /dev/vg1/lv1 # vim /etc/fstab # mkdir -p /mnt/data UUID=xxxxxxxx /mnt/data ext4 defaults 0 0 # vim /etc/fstab # mount -a # mount (Verify)
Question 29:
Create a backup file named /root/backup.tar.bz2, which contains the contents of /usr/local, bar must use the bzip2 compression.
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
cd /usr/local
tar -jcvf /root/backup.tar.bz2*
mkdir /test
tar -jxvf /root/backup.tar.bz2 -C /test/
Question 30:
The system ldap.example.com provides an LDAP authentication service.
Your system should bind to this service as follows:
The base DN for the authentication service is dc=domain11, dc=example, dc=com LDAP is used to provide both account information and authentication information. The connection should be encrypted using the certificate at http://
host.domain11.example.com/pub/domain11.crt
When properly configured, ldapuserX should be able to log into your system, but will not have a home directory until you have completed the autofs requirement. Username: ldapuser11
Password: password
Correct Answer. Check the anser in explanation.
Check the anser in explanation.
system-config-authentication LDAP user DN=dc=domain11,dc=example,dc=com Server=host.domain11.example.com Certificate= http://host.domain11.example.com/pub/domain11.crt (enter url carefully, there maybe // or ..) LDAP password OK starting sssd su -ldapuser11 Display Bash prompt #exit
Nowadays, the certification exams become more and more important and required by more and more
enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare
for the exam in a short time with less efforts? How to get a ideal result and how to find the
most reliable resources? Here on Vcedump.com, you will find all the answers.
Vcedump.com provide not only Red Hat exam questions,
answers and explanations but also complete assistance on your exam preparation and certification
application. If you are confused on your EX200 exam preparations
and Red Hat certification application, do not hesitate to visit our
Vcedump.com to find your solutions here.