Free EX200 Exam Braindumps

Pass your EX200 Red Hat Certified System Administrator (RHCSA) Exam exam with these free Questions and Answers

Page 2 of 27
QUESTION 1

SIMULATION
Add an additional swap partition of 754 MB to your system.
The swap partition should automatically mount when your system boots.
Do not remove or otherwise alter any existing swap partitions on your system.
Solution:
EX200 dumps exhibit fdisk -l
EX200 dumps exhibit fdisk -cu /dev/vda
p n
e or p select e
default (first): enter
default (last): enter n
default(first): enter
default(first): +754M t (1-5)
l: 82 p
w #reboot
#mkswap /dev/vda5
EX200 dumps exhibit vim /etc/fstab
/dev/vda5 swap swap defaults 0 0
wq
EX200 dumps exhibit mount -a
EX200 dumps exhibit swapon -a
EX200 dumps exhibit swapon -s

Does this meet the goal?

  1. A. Yes
  2. B. No

Correct Answer: A

QUESTION 2

Part 1 (on Node1 Server)
Task 2 [Installing and Updating Software Packages]
Configure your system to use this location as a default repository: http://utility.domain15.example.com/BaseOS
http://utility.domain15.example.com/AppStream
Also configure your GPG key to use this location http://utility.domain15.example.com/RPM-GPG-KEY-redhat-release
Solution:
* [root@node1 ~]# vim /etc/yum.repos.d/redhat.repo
[BaseOS]
name=BaseOS
baseurl=http://utility.domain15.example.com/BaseOS
enabled=1
gpgcheck=1
gpgkey=http://utility.domain15.example.com/RPM-GPG-KEY-redhat-release
[AppStream]
name=AppStream
baseurl=http://utility.domain15.example.com/AppStream
enabled=1
gpgcheck=1
gpgkey=http://utility.domain15.example.com/RPM-GPG-KEY-redhat-release
[root@node1 ~]# yum clean all
[root@node1 ~]# yum repolist
[root@node1 ~]# yum list all

Does this meet the goal?

  1. A. Yes
  2. B. No

Correct Answer: A

QUESTION 3

Create a new logical volume according to the following requirements:
The logical volume is named database and belongs to the datastore volume group and has a size of 50 extents. Logical volumes in the datastore volume group should have an extent size of 16 MB.
Format the new logical volume with a ext3 filesystem.
The logical volume should be automatically mounted under /mnt/database at system boot time.
Solution:

fdisk -cu /dev/vda
partx -a /dev/vda
pvcreate /dev/vdax
vgcreate datastore /dev/vdax -s 16M
lvcreate-l 50 -n database datastore
mkfs.ext3 /dev/datastore/database
mkdir /mnt/database
mount /dev/datastore/database /mnt/database/ df -Th
vi /etc/fstab
/dev/datastore /database /mnt/database/ ext3 defaults 0 0 mount -a

Does this meet the goal?

  1. A. Yes
  2. B. No

Correct Answer: A

QUESTION 4

Find the files owned by harry, and copy it to catalog: /opt/dir see explanation below.
Solution:
# cd /opt/
# mkdir dir
# find / -user harry -exec cp -rfp {} /opt/dir/ ;

Does this meet the goal?

  1. A. Yes
  2. B. No

Correct Answer: A

QUESTION 5

Some users home directory is shared from your system. Using showmount -e localhost command, the shared directory is not shown. Make access the shared users home directory.
Solution:
EX200 dumps exhibit Verify the File whether Shared or not ? : cat /etc/exports
EX200 dumps exhibit Start the nfs service: service nfs start
EX200 dumps exhibit Start the portmap service: service portmap start
EX200 dumps exhibit Make automatically start the nfs service on next reboot: chkconfig nfs on
EX200 dumps exhibit Make automatically start the portmap service on next reboot: chkconfig portmap on
EX200 dumps exhibit Verify either sharing or not: showmount -e localhost
EX200 dumps exhibit Check that default firewall is running on system?
If running flush the iptables using iptables -F and stop the iptables service.

Does this meet the goal?

  1. A. Yes
  2. B. No

Correct Answer: A

Page 2 of 27

Post your Comments and Discuss Red-Hat EX200 exam with other Community members: