9 minute read

EnsurePass Red Hat RHCSA EX200 Exam Real Dumps Red Hat Certified System Administrator (RHCSA)

Red Hat EX200 Exam | EnsurePass.com

Red Hat RHCSA EX200 Exam

Advertisement

Vendor: Red Hat

Exam Code: EX200

Exam Name: Red Hat Certified System Administrator (RHCSA)

Version: 13.04

Q & As: 67

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Why do you choose EnsurePass.com for your exam Preparation:

1. Real Exam Questions and Answers with PDF and VCE Files. 2. Free VCE Software 3. We do provide Personal Consulting Services. 4. Money Back Guarantee.

How to buy:

EX200 Exam Questions & Answershttp://www.ensurepass.com/EX200.html

Red Hat EX200 Exam | EnsurePass.com

Exam Times: RHCSA: Two and a half hours.

Pass Scores: Total 300 points. Pass at 210 points.

Exam Environment: Take examinations on a real system with a pre-installed virtual machine. All exams must be completed in the virtual machine. Network must be well configured. If the network cannot be accessed, you will not pass the exam. In the iptables configuration, if you need to refuse the access, please use “Reject”. (The default is set as ACCEPT.)

Note: All the CD-ROM package has in http://ip/dir/cdom under. You can use the real machine to verify that the exam experiment in the virtual machine is properly completed. domain40.example.com domain 172.24.40.0/24 network. tracker.com domain 172.16.0.0/16 network, general network rejected the meaning of the questions asked.

Boot the first thing iptables-F iptables-X iptables-Z service iptables save

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

QUESTION 1 Configure your Host Name, IP Address, Gateway and DNS. Host name: station.domain40.example.com IP Address:172.24.40.40/24 Gateway172.24.40.1 DNS:172.24.40.1

Answer: LANG= system-config-network-tui (Config ip address, subnet mask, gateway, DNS, host name, the default search domain.) /etc/init.d/NetworkManager restart vim /etc/hosts 172.24.40.40 station.domain40.example.com

View Configuration: cat /etc/sysconfig/network-scripts/ifcfg-eth0 IPADDR=172.24.40.40 GATEWAY=172.24.40.1 DNS1=172.24.40.1 cat /etc/resolv.conf search domain40.example.com nameserver 172.24.40.1 cat /etc/sysconfig/network HOSTNAME=station.domain40.example.com cat /etc/hosts 172.24.40.40 station.domain40.example.com

OR Graphical Interfaces: System->Preference->Network Connections (Configure IP Address, Gateway and DNS) Vim /etc/sysconfig/network (Configure Host Name)

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

QUESTION 2 Add 3 users: harry, natasha, tom. The requirements: The Additional group of the two users: harry, Natasha is the admin group. The user: tom's login shell should be non-interactive. Three user password set uplooking.

Answer: # groupadd admin # useradd -G admin harry # useradd -G admin natasha # useradd -s /sbin/nologin tom # echo uplooking | passwd --stdin harry # echo uplooking | passwd --stdin natasha # echo uplooking | passwd --stdin tom # id harry;id Natasha (Show additional group) # cat /etc/passwd (Show the login shell)

OR # system-config-users

QUESTION 3 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/

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

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

Answer: # which echo # crontab -e 23 14 * * * /bin/echo hello >> /tmp/hello.log # crontab -l (Verify)

QUESTION 5 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/ \; (-rf Forced recursive, -p copies permissions)

QUESTION 6 Find the rows that contain abcde from file /etc/testfile, and write it to the file/tmp/testfile, and the sequence is requested as the same as /etc/testfile.

Answer: # cat /etc/testfile | while read line; do echo $line | grep abcde | tee -a /tmp/testfile done

OR grep `abcde' /etc/testfile > /tmp/testfile

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

QUESTION 7 Create a 2G swap partition which take effect automatically at boot-start, and it should not affect the original swap partition.

Answer: #fdisk /dev/sda p-n-e- Write the last partition on the cylindrical metal plus 1-Enter-p-n-Enter-+2G-t-5-82-W partx -a /dev/sda (Executed twice) partx -a /dev/sda (partprobe used in RHEL5) mkswap /dev/sda5 Copy UUID swapon /dev/vda5 vim /etc/fstab UUID=XXXXX swap swap defaults 0 0 (swapon -s)

QUESTION 8 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

QUESTION 9 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

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

# yum makecache # yum install -y vsftpd # service vsftpd restart # chkconfig vsftpd on # chkconfig --list vsftpd # vim /etc/vsftpd/vsftpd.conf anonymous_enable=YES

QUESTION 10 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 # service httpd start # 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>

QUESTION 11 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

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

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

QUESTION 12 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 13 Configure the system synchronous as 172.24.40.10.

Answer: Graphical Interfaces: System-->Administration-->Date & Time

OR # system-config-date (Checking the following three) Synchronize date and time over the network Speed up initial synchronization Use Local Time Source Add->Time server ip->OK

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

QUESTION 14 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)

QUESTION 15 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

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

# vim /etc/fstab # mount -a # mount (Verify)

QUESTION 16 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 17 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 n +512M w # partprobe /dev/vda # mkfs -t ext4 /dev/vda5 # mkdir -p /data # vim /etc/fstab /dev/vda5 /data ext4 defaults 0 0 # mount -a

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

Red Hat EX200 Exam | EnsurePass.com

QUESTION 18 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 19 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

QUESTION 20 Add admin group and set gid=600

Answer: # groupadd -g 600 admin

Contact Us: support@ensurepass.com. Copyright © 2014 by EnsurePass.com. All rights reserved.

EnsurePass.com Members Features:

1.

Verified Answers researched by industry experts.

2.

Q&As are downloadable in PDF and VCE format.

3.

98% success Guarantee and Money Back Guarantee.

4.

Free updates for 180 Days.

5.

Instant Access to download the Items

View list of All Exam provided: http://www.ensurepass.com/certfications?index=ATo purchase Lifetime Full Access Membership click here: http://www.ensurepass.com/user/register

Valid Discount Code 20% OFF for 2019: MMJ4-IGD8-X3QW

To purchase the HOT Exams:

Vendors

Hot Exams

Download

Cisco

100-105

http://www.ensurepass.com/100-105.html

Cisco

200-105

http://www.ensurepass.com/200-105.html

Cisco

200-125

http://www.ensurepass.com/200-125.html

Cisco

200-310

http://www.ensurepass.com/200-310.html

Cisco

200-355

http://www.ensurepass.com/200-355.html

Cisco

300-101

http://www.ensurepass.com/300-101.html

Cisco

300-115

http://www.ensurepass.com/300-115.html

Cisco

300-135

http://www.ensurepass.com/300-135.html

Cisco

300-320

http://www.ensurepass.com/300-320.html

Cisco

400-101

http://www.ensurepass.com/400-101.html

CompTIA

220-1001

http://www.ensurepass.com/220-1001.html

CompTIA

220-1002

http://www.ensurepass.com/220-1002.html

CompTIA

220-901

http://www.ensurepass.com/220-901.html

CompTIA

220-902

http://www.ensurepass.com/220-902.html

CompTIA

CAS-003

http://www.ensurepass.com/CAS-003.html

CompTIA

LX0-103

http://www.ensurepass.com/LX0-103.html

CompTIA

LX0-104

http://www.ensurepass.com/LX0-104.html

CompTIA

N10-007

http://www.ensurepass.com/N10-007.html

CompTIA

PK0-004

http://www.ensurepass.com/PK0-004.html

CompTIA

SK0-004

http://www.ensurepass.com/SK0-004.html

CompTIA

SY0-501

http://www.ensurepass.com/SY0-501.html

Microsoft

70-410

http://www.ensurepass.com/70-410.html

Microsoft

70-411

http://www.ensurepass.com/70-411.html

Microsoft

70-412

http://www.ensurepass.com/70-412.html

Microsoft

70-740

http://www.ensurepass.com/70-740.html

Microsoft

70-741

http://www.ensurepass.com/70-741.html

Microsoft

70-742

http://www.ensurepass.com/70-742.html

Microsoft

70-761

http://www.ensurepass.com/70-761.html

Microsoft

70-762

http://www.ensurepass.com/70-762.html

ISC

CISSP

http://www.ensurepass.com/CISSP.html

Cisco Exam Dumps

CCDA

200-310

CCIE Security

300-701 400-251

CCDE

352-001

CCIE Service Provider

300-501 400-201

CCDP

300-101 300-115 300-320

CCIE Wireless

400-351

CCENT

100-105

CCNA

200-301

CCIE Collaboration

300-801 400-051

CCNA Cloud

210-451 210-455

CCIE Data Center

300-601 400-151

CCNA Collaboration

210-060 210-065

CCIE Enterprise Infrastructure

300-401

CCNA Cyber Ops

210-250 210-255

CCIE Enterprise Wireless

300-401

CCNA Data Center

200-150 200-155

CCIE Routing and Switching

400-101

CCNA Industrial

200-601

CCNA Routing & Switching

100-105 200-105

CCNP Routing & Switching

300-101 300-115

200-125300-135

CCNA Security

210-260

CCT Data Center

010-151

CCNA Service Provider

640-875 640-878

CCT Routing & Switching

640-692

CCNA Wireless

200-355

Cisco Certified DevNet Associate

200-901

CCNP Cloud

300-460 300-465

300-470 300-475

Cisco Network Programmability Design and

Implementation Specialist

300-550

CCNP Collaboration

300-070 300-075

300-080

300-085 300-801

300-810

300-815 300-820

300-835

CCNP Enterprise

300-401 300-410 300-415

300-420 300-425 300-430

300-435

CCNP Data Center

300-160 300-165

300-170

300-175 300-180

300-601

300-610 300-615

300-620

300-625

300-635

CCNP Security

300-206 300-208 300-209

300-210 300-701 300-710

300-715 300-720 300-725

300-730 300-735

CCNP Service Provider

300-501 300-510 300-515

642-883 642-885 642-887

642-889 300-535

CCNP Wireless

300-360 300-365

300-370 300-375

Cisco Certified DevNet Professional

300-435 300-535

300-635

300-735 300-835

300-901

300-910 300-915

300-920

Cisco Certified DevNet Specialist

300-435 300-535 300-635

300-735 300-835 300-901

300-910 300-915 300-920

Cisco Network Programmability Developer

Specialist

300-560

Role-based Exams Dumps

Azure Security Engineer Associate

AZ-500

Microsoft 365 Certified Fundamentals

MS-900

Dynamics 365 Fundamentals

MB-900

Messaging Administrator Associate

MS-200 MS-201 MS-202

Dynamics 365 for Marketing FunctionalModern Desktop Administrator Associate

Consultant AssociateMD-100

MD-101

MB-200

MB-220

Dynamics 365 for Field Service Functional

Consultant Associate

Security Administrator Associate

MS-500

MB-200

MB-240

Dynamics 365 for Finance and Operations,

Financials Functional Consultant Associate

Teamwork Administrator Associate

MS-300 MS-301 MS-302

MB-300

MB-310

Dynamics 365 for Finance and Operations,

Manufacturing Functional Consultant

Azure Administrator Associate

AZ-103

Associate

MB-300

MB-320

Dynamics 365 for Finance and Operations,

Supply Chain Management Functional

Azure AI Engineer Associate

AI-100

Consultant Associate

MB-300MB-330

Azure Data Engineer AssociateMicrosoft Certified Azure Fundamentals

DP-200DP-201

AZ-900

Azure Data Scientist AssociateAzure Solutions Architect Expert

DP-100AZ-300

AZ-301

Azure Developer Associate

AZ-203

Dynamics 365 for Customer Service

Functional Consultant Associate

MB-200MB-230

Azure DevOps Engineer Expert

AZ-400

Dynamics 365 for Sales Functional Consultant

Associate

MB-200MB-210

MCSA Exams Dumps

BI Reporting

70-778

70-779

SQL Server 2012/2014

70-461

70-462

70-463

Microsoft Dynamics 365 for Operations

70-764

70-765

Universal Windows Platform

70-483

70-357

MB6-894

SQL 2016 BI Development

70-767

70-768

Web Applications

70-480

70-483

70-486

SQL 2016 Database Administration

70-764

70-765

Windows Server 2012

70-410

70-411

70-412

SQL 2016 Database Development

70-761

70-762

Windows Server 2016

70-740

70-741

70-742

MCSE Exams Dumps

Business Applications

MB2-716

MB2-718

MB2-719

MB6-895

MB6-896

MB6-897

MB6-898

Data Management and Analytics

70-464

70-465

70-466

70-467

70-762

70-767

70-768

70-777

Core Infrastructure

70-744

70-745

70-413

70-414

MCSE Productivity Solutions Expert

70-345

70-339

70-333

70-334

70-537

MCSD Exams Dumps

70-357 70-486 70-487

MTA Exams Dumps

Exam 98-349

Exam 98-361

Exam 98-364

Exam 98-365

Exam 98-366

Exam 98-367

Exam 98-368

Exam 98-369

Exam 98-375

Exam 98-380

Exam 98-381

Exam 98-382

Exam 98-383

Exam 98-388

CompTIA Exam Dumps

CompTIA A+ 2019

CompTIA A+ 2019

CompTIA A+ 2019

CompTIA A+ 2019

CompTIA Advanced Security Practitioner

CompTIA Cloud Essentials

CompTIA Cloud Essentials

CompTIA CySA+

CompTIA Cloud+

CompTIA IT Fundamentals

CompTIA IT Fundamentals

CompTIA Linux+

CompTIA Linux+

CompTIA Network+

CompTIA Project+

CompTIA PenTest+

CompTIA Security+

CompTIA CTT+

CompTIA CTT+

CompTIA CTT+

CompTIA Linux+

220-1001

220-1002

220-901

220-902

CAS-003

CLO-001

CLO-002

CS0-001

CV0-002

FC0-U51

FC0-U61

LX0-103

LX0-104

N10-007

PK0-004

PT0-001

SY0-501

TK0-201

TK0-202

TK0-203

XK0-004

This article is from: