getcertified4sure.com

EX200 Exam

Finding Rebirth EX200 braindump




Ucertify provides 100% free Red Hat EX200 braindumps which ensure your good results at the very first attempt. No much more other sites can supply this guarantee. You will have instant access to be able to our downloadable EX200 analyze engine software. Get the perfect Red Hat Red Hat training materials and also make complete preparation for the EX200 exam. You will find everything accessible that may seem in the Red Hat EX200 exam. Each of our Red Hat Red Hat exam questions and answers are generally in details and throughout depth. We produce an interactive platform pertaining to all the candidates. It is possible to visit the webpage, and also talk with one another. So you may make progress quicker and also easier.

2021 Apr EX200 answers

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


Q12. CORRECT TEXT 

Configure the system synchronous as 172.24.40.10. 

Answer: Graphical Interfaces: 

System-->Administration-->Date & Time 

OR 

# system-config-date 


Q13. CORRECT TEXT 

Add users: user2, user3. 

The Additional group of the two users: user2, user3 is the admin group Password: redhat 

Answer: # useradd -G admin user2 

# useradd -G admin user3 

# passwd user2 

redhat 

# passwd user3 

redhat 


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


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


Abreast of the times EX200 brain dumps:

Q16. 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) 


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


Q18. CORRECT TEXT 

Copy /etc/fstab to /var/tmp name admin, the user1 could read, write and modify it, while user2 without any permission. 

Answer: # cp /etc/fstab /var/tmp/ 

# chgrp admin /var/tmp/fstab 

# setfacl -m u:user1:rwx /var/tmp/fstab 

# setfacl -m u:user2:--- /var/tmp/fstab 

# ls -l 

-rw-rw-r--+ 1 root admin 685 Nov 10 15:29 /var/tmp/fstab 


Q19. 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) 


Q20. CORRECT TEXT 

Configure autofs to make sure after login successfully, it has the home directory autofs, which is shared as /rhome/ldapuser40 at the ip: 172.24.40.10. and it also requires that, other ldap users can use the home directory normally. 

Answer: # chkconfig autofs on 

# cd /etc/ 

# vim /etc/auto.master 

/rhome /etc/auto.ldap 

# cp auto.misc auto.ldap 

# vim auto.ladp 

ldapuser40 -rw,soft,intr 172.24.40.10:/rhome/ldapuser40 

* -rw,soft,intr 172.16.40.10:/rhome/& 

# service autofs stop 

# server autofs start 

# showmount -e 172.24.40.10 

# su - ladpuser40