
Updated Jan-2023 Exam EX200 Dumps - Pass Your Certification Exam
Latest Real RedHat EX200 Exam Dumps Questions
Red Hat RHCSA Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Understand and use essential tools | -Access a shell prompt and issue commands with correct syntax -Use input-output redirection (>, >>, |, 2>, etc.) -Use grep and regular expressions to analyze text -Access remote systems using SSH -Log in and switch users in multiuser targets -Archive, compress, unpack, and uncompress files using tar, star, gzip, and bzip2 -Create and edit text files -Create, delete, copy, and move files and directories -Create hard and soft links -List, set, and change standard ugo/rwx permissions -Locate, read, and use system documentation including man, info, and files in /usr/share/doc |
| Deploy, configure, and maintain systems | -Schedule tasks using at and cron -Start and stop services and configure services to start automatically at boot -Configure systems to boot into a specific target automatically -Configure time service clients -Install and update software packages from Red Hat Network, a remote repository, or from the local file system -Work with package module streams -Modify the system bootloader |
| Create and configure file systems | -Create, mount, unmount, and use vfat, ext4, and xfs file systems -Mount and unmount network file systems using NFS -Extend existing logical volumes -Create and configure set-GID directories for collaboration -Configure disk compression -Manage layered storage -Diagnose and correct file permission problems |
| Configure local storage | -List, create, delete partitions on MBR and GPT disks -Create and remove physical volumes -Assign physical volumes to volume groups -Create and delete logical volumes -Configure systems to mount file systems at boot by universally unique ID (UUID) or label -Add new partitions and logical volumes, and swap to a system non-destructively |
| Create simple shell scripts | -Conditionally execute code (use of: if, test, [], etc.) -Use Looping constructs (for, etc.) to process file, command line input -Process script inputs ($1, $2, etc.) -Processing output of shell commands within a script -Processing shell command exit codes |
NEW QUESTION 11
SIMULATION
There is a local logical volumes in your system, named with common and belong to VGSRV volume group, mount to the /common directory. The definition of size is 128 MB.
Requirement:
Extend the logical volume to 190 MB without any loss of data. The size is allowed between 160-160 MB after extending.
Answer:
Explanation:
See explanation below.
Explanation/Reference:
Explanation: lvextend -L 190M /dev/mapper/vgsrv-common resize2fs /dev/mapper/vgsrv-common
NEW QUESTION 12
Part 2 (on Node2 Server)
Task 2 [Installing and Updating Software Packages]
Configure your system to use this location as a default repository:
http://utility.domain15.example.com/BaseOS
http://utility.domain15.example.com/AppStream
Also configure your GPG key to use this location
http://utility.domain15.example.com/RPM-GPG-KEY-redhat-release
Answer:
Explanation:
[root@node1 ~]# vim /etc/yum.repos.d/redhat.repo
[BaseOS]
name=BaseOS
baseurl=http://utility.domain15.example.com/BaseOS
enabled=1
gpgcheck=1
gpgkey=http://utility.domain15.example.com/RPM-GPG-KEY-redhat-release
[AppStream]
name=AppStream
baseurl=http://utility.domain15.example.com/AppStream
enabled=1
gpgcheck=1
gpgkey=http://utility.domain15.example.com/RPM-GPG-KEY-redhat-release
[root@node1 ~]# yum clean all
[root@node1 ~]# yum repolist
repo id repo name
AppStream AppStream
BaseOS BaseOS
[root@node1 ~]# yum list all
NEW QUESTION 13
Find the rows that contain abcde from file /etc/testfile, and write it to the file/tmp/testfile, and the sequence is requested as the same as /etc/testfile.
Answer:
Explanation:
# cat /etc/testfile | while read line;
do
echo $line | grep abcde | tee -a /tmp/testfile
done
OR
grep `abcde' /etc/testfile > /tmp/testfile
NEW QUESTION 14
Install a FTP server, and request to anonymous download from /var/ftp/pub catalog. (it needs you to configure yum direct to the already existing file server. )
Answer:
Explanation:
Answer see in the explanation.
Explanation/Reference:
# cd /etc/yum.repos.d
# vim local.repo
[local]
name=local.repo
baseurl=file:///mnt
enabled=1
gpgcheck=0
# yum makecache
# yum install -y vsftpd
# service vsftpd restart
# chkconfig vsftpd on
# chkconfig --list vsftpd
# vim /etc/vsftpd/vsftpd.conf
anonymous_enable=YES
NEW QUESTION 15
SIMULATION
SELinux must be running in the Enforcing mode.
Answer:
Explanation:
See explanation below.
Explanation/Reference:
Explanation:
getenforce // Check the current mode of SELinux // SELinux runs in enforcing mode // Check getenforce 1 getenforce vim /etc/selinux/config selinux=enforcing // To temporarily enable SELinux
:wg
sestatus
NEW QUESTION 16
Create a collaborative directory/home/admins with the following characteristics:
Group ownership of /home/admins is adminuser
The directory should be readable, writable, and accessible to members of adminuser, but not to any other user. (It is understood that root has access to all files and directories on the system.) Files created in /home/admins automatically have group ownership set to the adminuser group
Answer:
Explanation:
mkdir /home/admins
chgrp -R adminuser /home/admins
chmodg+w /home/admins
chmodg+s /home/admins
NEW QUESTION 17
Successfully resolve to server1.example.com where your DNS server is 172.24.254.254.
Answer:
Explanation:
vi /etc/resolv.conf
nameserver 172.24.254.254
host server1.example.com
On every clients, DNS server is specified in /etc/resolv.conf. When you request by name it tries to resolv from DNS server.
NEW QUESTION 18
CORRECT TEXT
Add users: user2, user3.
The Additional group of the two users: user2, user3 is the admin group Password: redhat
Answer:
Explanation:
# useradd -G admin user2
# useradd -G admin user3
# passwd user2
redhat
# passwd user3
redhat
NEW QUESTION 19
Configure a user account.
Create a user iaruid is 3400. Password is redhat
Answer:
Explanation:
see explanation below.
Explanation
useradd -u 3400 iar
passwd iar
NEW QUESTION 20
Add users: user2, user3.
The Additional group of the two users: user2, user3 is the admin group Password: redhat
Answer:
Explanation:
see explanation below.
Explanation
# useradd -G admin user2
# useradd -G admin user3
# passwd user2
redhat
# passwd user3
redhat
NEW QUESTION 21
Find all lines in the file /usr/share/dict/words that contain the string seismic. Put a copy of all these lines in their original order in the file /root/wordlist. /root/wordlist should contain no empty lines and all lines must be exact copies of the original lines in /usr/share/dict/words.
Answer:
Explanation:
see explanation below.
Explanation
grep seismic /usr/share/dict/words> /root/wordlist
NEW QUESTION 22
Change the logical volume capacity named vo from 190M to 300M. and the size of the floating range should set between 280 and 320. (This logical volume has been mounted in advance.)
Answer:
Explanation:
see explanation below.
Explanation
# vgdisplay
(Check the capacity of vg, if the capacity is not enough, need to create pv , vgextend , lvextend)
# lvdisplay (Check lv)
# lvextend -L +110M /dev/vg2/lv2
# resize2fs /dev/vg2/lv2
mount -a
(Verify)
------------------------------------------------------------------------------- (Decrease lvm)
# umount /media
# fsck -f /dev/vg2/lv2
# resize2fs -f /dev/vg2/lv2 100M
# lvreduce -L 100M /dev/vg2/lv2
# mount -a
# lvdisplay (Verify)
OR
# e2fsck -f /dev/vg1/lvm02
# resize2fs -f /dev/vg1/lvm02
# mount /dev/vg1/lvm01 /mnt
# lvreduce -L 1G -n /dev/vg1/lvm02
# lvdisplay (Verify)
NEW QUESTION 23
Upgrade the kernel, start the new kernel by default. kernel download from this address:
ftp://server1.domain10.example.com/pub/update/new.kernel
Answer:
Explanation:
Download the new kernel file and then install it.
[root@desktop8 Desktop]# ls
kernel-2.6.32-71.7.1.el6.x86_64.rpm
kernel-firmware-2.6.32-71.7.1.el6.noarch.rpm
[root@desktop8 Desktop]# rpm -ivh kernel-*
Preparing... ###########################################
[100%]
1:kernel-firmware
########################################### [ 50%]
2:kernel
########################################### [100%]
Verify the grub.conf file, whether use the new kernel as the default boot. [root@desktop8 Desktop]# cat /boot/grub/grub.conf default=0 title Red Hat Enterprise Linux Server (2.6.32-71.7.1.el6.x86_64) root (hd0,0) kernel /vmlinuz-2.6.32-71.7.1.el6.x86_64 ro root=/dev/mapper/vol0-root rd_LVM_LV=vol0/root rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet initrd /initramfs-2.6.32-71.7.1.el6.x86_64.img
NEW QUESTION 24
Your System is going use as a router for 172.24.0.0/16 and 172.25.0.0/16. Enable the IP Forwarding.
1. echo "1" >/proc/sys/net/ipv4/ip_forward
2. vi /etc/sysctl.conf net.ipv4.ip_forward=1
Answer:
Explanation:
see explanation below.
Explanation
/proc is the virtual filesystem, containing the information about the running kernel.
To change the parameter of running kernel you should modify on /proc. From Next reboot the system, kernel will take the value from /etc/sysctl.conf.
NEW QUESTION 25
CORRECT TEXT
Upgrading the kernel as 2.6.36.7.1, and configure the system to Start the default kernel, keep the old kernel available.
Answer:
Explanation:
# cat /etc/grub.conf
# cd /boot
# lftp it
# get dr/dom/kernel-xxxx.rpm
# rpm -ivh kernel-xxxx.rpm
# vim /etc/grub.conf
default=0
NEW QUESTION 26
Locate all the files owned by ira and copy them to the / root/findresults directory.
Answer:
Explanation:
see explanation below.
Explanation
# find / -user ira > /root/findresults (if /root/findfiles is a file)
# mkdir -p /root/findresults
# find / -user ira -exec cp -a {} /root/findresults\; [ if /root/findfiles is a directory] ls /root/findresults
NEW QUESTION 27
......
EX200 Dumps To Pass RHCSA Exam in One Day: https://examcollection.actualcollection.com/EX200-exam-questions.html