Download Red Hat Certified System Administrator (RHCSA) Exam.EX200.SelfTestEngine.2018-10-30.49q.vcex

Vendor: RedHat
Exam Code: EX200
Exam Name: Red Hat Certified System Administrator (RHCSA) Exam
Date: Oct 30, 2018
File Size: 574 KB
Downloads: 2

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

Question 1
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.
  1. See explanation below.
Correct answer: 1
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/errataOR 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
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 2
Binding to an external validation server. 
System server.domain11.example.com provides a LDAP validation service, your system should bind to this service as required:
Base DN of validation service is dc=example,dc=com 
LDAP is used for providing account information and validation information Connecting and using the certification of http://server.domain11.example.com/pub/EXAMPLE-CA-CERT to encrypt
After the correct configuration, ldapuser1 can log into your system, it does not have HOME directory until you finish autofs questions, ldapuser1 password is password.
  1. See explanation below.
Correct answer: 1
Explanation:
yum -y install sssd authconfig-gtk krb5-workstation authconfig-gtk // open the graphical interface Modify user account database to ldap, fill up DN and LDAP SERVER as questions required, use TLS to encrypt connections making tick, write http://server.domain11.example.com/pub/EXAMPLE-CA-CERT to download ca, authentication method choose ldap password.You can test if the ldapuser is added by the following command:Id ldapuser1 Note: user password doesn’t not need to set
yum -y install sssd authconfig-gtk krb5-workstation authconfig-gtk // open the graphical interface 
Modify user account database to ldap, fill up DN and LDAP SERVER as questions required, use TLS to encrypt connections making tick, write http://server.domain11.example.com/pub/EXAMPLE-CA-CERT to download ca, authentication method choose ldap password.
You can test if the ldapuser is added by the following command:
Id ldapuser1 
Note: user password doesn’t not need to set
Question 3
Configure NTP. 
Configure NTP service, Synchronize the server time, NTP server: classroom.example.com
  1. See explanation below.
Correct answer: 1
Explanation:
Configure the client: Yum -y install chrony Vim /etc/chrony.conf Add: server classroom.example.com iburstStart: systemctl enable chronydsystemctl restart chronyd Validate: timedatectl status
Configure the client: 
Yum -y install chrony 
Vim /etc/chrony.conf 
Add: server classroom.example.com iburst
Start: systemctl enable chronyd
systemctl restart chronyd 
Validate: timedatectl status
Question 4
Configure autofs. 
Configure the autofs automatically mount to the home directory of LDAP, as required:
server.domain11.example.com use NFS to share the home to your system. This file system contains a pre configured home directory of user ldapuserX. 
Home directory of ldapuserX is:
server.domain11.example.com /home/guests/ldapuser 
Home directory of ldapuserX should automatically mount to the ldapuserX of the local /home/guests Home directory’s write permissions must be available for users ldapuser1’s password is password
  1. See explanation below.
Correct answer: 1
Explanation:
yum install -y autofs mkdir /home/rehome /etc/auto.master /home/rehome/etc/auto.ldap Keep then exit cp /etc/auto.misc /etc/auto.ldap /etc/auto.ldap ldapuserX -fstype=nfs,rw server.domain11.example.com:/home/guests/Keep then exit systemctl start autofs systemctl enable autofs su - ldapuserX// test If the above solutions cannot create files or the command prompt is -bash-4.2$, it maybe exist multi-level directory, this needs to change the server.domain11.example.com:/home/guests/ to server.domain11.example.com:/home/guests/ldapuserX. What is multi-level directory? It means there is a directory of ldapuserX under the /home/guests/ldapuserX in the questions. This directory is the real directory.
yum install -y autofs 
mkdir /home/rehome 
/etc/auto.master 
/home/rehome/etc/auto.ldap 
Keep then exit 
cp /etc/auto.misc /etc/auto.ldap 
/etc/auto.ldap 
ldapuserX -fstype=nfs,rw server.domain11.example.com:/home/guests/
Keep then exit 
systemctl start autofs 
systemctl enable autofs 
su - ldapuserX// test 
If the above solutions cannot create files or the command prompt is -bash-4.2$, it maybe exist multi-level directory, this needs to change the server.domain11.example.com:/home/guests/ to server.domain11.example.com:/home/guests/ldapuserX. What is multi-level directory? It means there is a directory of ldapuserX under the /home/guests/ldapuserX in the questions. This directory is the real directory.
Question 5
Configure a user account. 
,Create a user iaruid is 3400. Password is redhat
  1. See explanation below.
Correct answer: 1
Explanation:
useradd -u 3400 iar passwd iar
useradd -u 3400 iar 
passwd iar
Question 6
Add a swap partition. 
Adding an extra 500M swap partition to your system, this swap partition should mount automatically when the system starts up. Don't remove and modify the existing swap partitions on your system.
  1. See explanation below.
Correct answer: 1
Explanation:
fdisk -cu /dev/vda// in the way of expanding the partition, don’t make main partition partx –a /dev/vda mkswap /dev/vdax swapon /dev/vdax swapon –s vi /etc/fstab /dev/vdaxswapswapdefaults0 0 mount -a
fdisk -cu /dev/vda// in the way of expanding the partition, don’t make main partition 
partx –a /dev/vda 
mkswap /dev/vdax 
swapon /dev/vdax 
swapon –s 
vi /etc/fstab 
/dev/vdaxswapswapdefaults0 0 
mount -a
Question 7
Search files. 
Find out files owned by jack, and copy them to directory /root/findresults
  1. See explanation below.
Correct answer: 1
Explanation:
mkdir/root/findfiles find / -user jack -exec cp -a  /root/findfiles/ \; ls /root/findresults
mkdir/root/findfiles 
find / -user jack -exec cp -a  /root/findfiles/ \; ls /root/findresults
Question 8
Search a String 
Find out all the columns that contains the string seismic within /usr/share/dict/words, then copy all these columns to /root/lines.tx in original order, there is no blank line, all columns must be the accurate copy of the original columns.
  1. See explanation below.
Correct answer: 1
Explanation:
grep seismic /usr/share/dict/words    > /root/lines.txt
grep seismic /usr/share/dict/words    > /root/lines.txt
Question 9
Create a backup 
Create a backup file named /root/backup.tar.bz2, contains the content of /usr/local, tar must use bzip2 to compress.
  1. See explanation below.
Correct answer: 1
Explanation:
cd /usr/local tar –jcvf /root/backup.tar.bz2 mkdir /test tar –jxvf /root/backup.tar.bz2 –C /test// Decompression to check the content is the same as the /usr/loca after If the questions require to use gzip to compress. change –j to –z.
cd /usr/local 
tar –jcvf /root/backup.tar.bz2 
mkdir /test 
tar –jxvf /root/backup.tar.bz2 –C /test// Decompression to check the content is the same as the /usr/loca after 
If the questions require to use gzip to compress. change –j to –z.
Question 10
Create a logical volume 
Create a new logical volume as required:
Name the logical volume as database, belongs to datastore of the volume group, size is 50 PE. 
Expansion size of each volume in volume group datastore is 16MB. 
Use ext3 to format this new logical volume, this logical volume should automatically mount to /mnt/database
  1. See explanation below.
Correct answer: 1
Explanation:
fdisk -cu /dev/vda// Create a 1G partition, modified when needed partx –a /dev/vda pvcreate /dev/vdax vgcreate datastore /dev/vdax –s 16M lvcreate– l 50 –n database datastore mkfs.ext3 /dev/datastore/database mkdir /mnt/database mount /dev/datastore/database /mnt/database/ df –Th vi /etc/fstab /dev/datastore /database /mnt/database/ ext3 defaults 0 0 mount –a Restart and check all the questions requirements.
fdisk -cu /dev/vda// Create a 1G partition, modified when needed 
partx –a /dev/vda 
pvcreate /dev/vdax 
vgcreate datastore /dev/vdax –s 16M 
lvcreate– l 50 –n database datastore 
mkfs.ext3 /dev/datastore/database 
mkdir /mnt/database 
mount /dev/datastore/database /mnt/database/ df –Th 
vi /etc/fstab 
/dev/datastore /database /mnt/database/ ext3 defaults 0 0 mount –a 
Restart and check all the questions requirements.
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!