7 mins read

[2017 New RedHat Questions] New RedHat EX200 Dumps PDF Training Materials And VCE Youtube Update

Preparation of any exam is not easy, especially when a person wants to pass it with a good score, same is the case with RedHat EX200 dumps as it not only requires hard work, but also the practice questions which will assist in the preparation of the Red Hat Certified System Administrator – RHCSA exam. leads4pass RedHat introduction to latest release RedHat https://www.leads4pass.com/ex200.html dumps pdf questions answers video is what you need to take. Latest RedHat RHCSA EX200 dumps exam questions and answers update free try, pass RedHat EX200 exam test easily. New RedHat EX200 dumps pdf training materials free download: https://drive.google.com/open?id=0B_7qiYkH83VRYXlWRmZuRlZBZWc New RedHat EX300 dumps pdf training materials free download: https://drive.google.com/open?id=0B_7qiYkH83VRdEZ5cDAzckp2RXc Vendor: RedHat Certifications: RHCSA Exam Name: Red Hat Certified System Administrator – RHCSA Exam Code: EX200 Total Questions: 24 Q&As EX200 dumps QUESTION 1 Create a 512M partition, make it as ext4 file system, mounted automatically under /mnt/data and which take effect automatically at boot-start. Answer: # fdisk /dev/vda # partprobe /dev/vda # mkfs -t ext4 /dev/vda5 # mkdir -p /data # vim /etc/fstab /dev/vda5 /data ext4 defaults 0 0 # mount -a QUESTION 2 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 QUESTION 3 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. EX200 dumps 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 QUESTION NO: 20 CORRECT TEXT Add admin group and set gid=600 Answer: # groupadd -g 600 admin QUESTION 4 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 QUESTION 5 Create a catalog under /home named admins. Its respective group is requested to be the admin group. The group users could read and write, while other users are not allowed to access it. The files created by users from the same group should also be the admin group. Answer: # cd /home/ # mkdir admins / # chown .admin admins/ # chmod 770 admins/ # chmod g+s admins/ QUESTION 6 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) QUESTION 7 Change the logical volume capacity named vo from 190M to 300M. and the size of the floating range should set between 280 and 320. EX200 dumps (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) QUESTION 8 Configure the system synchronous as 172.24.40.10. Answer: Graphical Interfaces: System–>Administration–>Date & Time OR # system-config-date QUESTION 9 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 QUESTION 10 Create a user named alex, and the user id should be 1234, and the password should be alex111. EX200 dumps Answer: # useradd -u 1234 alex # passwd alex alex111 alex111 OR echo alex111|passwd -stdin alex QUESTION 11 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 QUESTION 12 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 Reference: https://www.leads4pass.com/ex200.html dumps exam questions and answers update free try. Watch the video to learn more: https://youtu.be/4wPwcCo1Y5o

Author


Discover more from Collect the latest Microsoft (Azure, Dynamics 365, Microsoft 365, Fundamentals, MTA...) exam questions and answers-Advanced sharing with Cisco, CompTIA, Citrix

Subscribe to get the latest posts sent to your email.