Red Hat EX200 the answers, EX200 documentation concerns, The past svereal years, Red Hat grows more and many more common. And Red Hat EX200 exam is rather adjust to individuals whore useful in the information technology site. If someone desires to go away the Red Hat EX200 exam, and acquire the Red Hat documentation with success, should just decide on Red Hat EX200 examine Q&As for all resources very carefully.

2021 Sep EX200 exam cram

Q1. 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 


Q2. 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 


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


Q4. CORRECT TEXT 

Configure a task: plan to run echo hello command at 14:23 every day. 

Answer: # which echo 

# crontab -e 

23 14 * * * /bin/echo hello 

# crontab -l (Verify) 


Q5. CORRECT TEXT 

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. 

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


EX200 test question

Most recent EX200 dumps:

Q6. 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> 


Q7. 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> 


Q8. 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 


Q9. CORRECT TEXT 

Download ftp://192.168.0.254/pub/boot.iso to /root, and mounted automatically under /media/cdrom and which take effect automatically at boot-start. 

Answer: # cd /root; wget ftp://192.168.0.254/pub/boot.iso 

# mkdir -p /media/cdrom 

# vim /etc/fstab 

/root/boot.iso /media/cdrom iso9660 defaults,loop 0 0 

# mount -a 

mount [-t vfstype] [-o options] device dir 


Q10. CORRECT TEXT 

Configure a task: plan to run echo hello command at 14:23 every day. 

Answer: # which echo 

# crontab -e 

23 14 * * * /bin/echo hello 

# crontab -l (Verify)