getcertified4sure.com

EX200 Exam

Top Red Hat EX200 free samples Choices




Exambible have the nearly all accurate and authentic Red Hat Red Hat practice questions which with 100% right answers. Our certified subject matter professionals are dedicated to researching and creating the Red Hat Red Hat exam dumps which contain the latest contents inside accordance with the EX200 exam syllabus. We all hope you will succeed in Red Hat Red Hat EX200 exam with our Red Hat Red Hat practice questions and answers. Many candidates have got achievement after purchasing our Red Hat goods. We are generally proud of the substantial passing ratio. However, in the event you unluckily fail the Red Hat certification exam, we will give an individual a Complete REFUND of your purchasing fee as well as send an individual another exact same value product or service for free.

2021 Apr EX200 actual exam

Q1. CORRECT TEXT 

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: # 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 


Q2. CORRECT TEXT 

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: # 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 


Q3. 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: # 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 


Q4. CORRECT TEXT 

Configure a HTTP server, which can be accessed through http://station.domain40.example.com. 

Please download the released page from http://ip/dir/example.html. 

Answer: # yum install -y httpd 

# chkconfig httpd on 

# cd /var/www/html 

# wget http://ip/dir/example.html 

# cp example.com index.html 

# vim /etc/httpd/conf/httpd.conf 

NameVirtualHost 192.168.0.254:80 

<VirtualHost 192.168.0.254:80> 

DocumentRoot /var/www/html/ 

ServerName station.domain40.example.com 

</VirtualHost> 


Q5. CORRECT TEXT 

Create a volume group,and set 8M as a extends. Divided a volume group containing 50 extends on volume group lv (lvshare), make it as ext4 file system, and mounted automatically under /mnt/data. And the size of the floating range should set between 380M and 400M. 

Answer: # fdisk 

# partprobe 

# pvcreate /dev/vda6 

# vgcreate -s 8M vg1 /dev/vda6 -s 

# lvcreate -n lvshare -l 50 vg1 -l 

# mkfs.ext4 /dev/vg1/lvshare 

# mkdir -p /mnt/data 

# vim /etc/fstab 

/dev/vg1/lvshare /mnt/data ext4 defaults 0 0 

# mount -a 

# df -h 


Improved EX200 practice test:

Q6. CORRECT TEXT 

Find the files owned by harry, and copy it to catalog: /opt/dir 

Answer: # cd /opt/ 

# mkdir dir 

# find / -user harry -exec cp -rfp {} /opt/dir/ \; 


Q7. CORRECT TEXT 

Create a user named alex, and the user id should be 1234, and the password should be alex111. 

Answer: # useradd -u 1234 alex 

# passwd alex 

alex111 

alex111 

OR 

echo alex111|passwd -stdin alex 


Q8. CORRECT TEXT 

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: # 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) 


Q9. 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: # 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 


Q10. CORRECT TEXT 

Configure the verification mode of your host account and the password as LDAP. And it can ldapuser40. The password is set as "password". And the certificate login successfully through 

can be downloaded from http://ip/dir/ldap.crt. After the user logs on , the user has no host directory unless you configure the autofs in the following questions. 

Answer: system-config-authentication 

LDAP Server: ldap//instructor.example.com (In domain form, not write IP) 

OR 

# yum groupinstall directory-client (1.krb5-workstation 2.pam-krb5 3.sssd) 

# system-config-authentication 

:1.User Account Database: LDAP 

:2.LDAP Search Base DN: dc=example,dc=com 

:3.LDAP Server: ldap://instructor.example.com (In domain form, not write IP) 

:4.Download CA Certificate 

:5.Authentication Method: LDAP password 

:6.Apply 

getent passwd ldapuser40