ITCertMagic EX200 Dumps PDF - 100% Passing Guarantee [Q51-Q66]

Share

ITCertMagic EX200 Dumps PDF - 100% Passing Guarantee

EX200 Braindumps Real Exam Updated on Nov 01, 2021 with 110 Questions


Difficulty in writing EX200 Exam

Candidates face many problems when they start preparing for the Red Hat EX200 exam. If a candidate wants to prepare his for the Red Hat EX200 exam without any problem and get good grades in the exam. Then they have to choose the best Red Hat EX200 dumps for real exam questions practice. There are many websites that are offering the latest Red Hat EX200 exam questions and answers but these questions are not verified by Red Hat certified experts and that’s why many are failed in their just first attempt. ITCertMagic is the best platform which provides the candidate with the necessary Red Hat EX200 questions that will help him to pass the Red Hat EX200 exam on the first time. The candidate will not have to take the Red Hat EX200 exam twice because with the help of Red Hat EX200 dumps Candidate will have every valuable material required to pass the Red Hat EX200 exam. We are providing the latest and actual questions and that is the reason why this is the one that he needs to use and there are no chances to fail when a candidate will have valid Red Hat EX200 dumps from ITCertMagic. We have the guarantee that the questions that we have will be the ones that will pass candidate in the Red Hat EX200 exam in the very first attempt.

 

NEW QUESTION 51
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:

Explanation:
Answer see in the explanation.
Explanation/Reference:
# 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)

 

NEW QUESTION 52
SIMULATION
Configure iptables, there are two domains in the network, the address of local domain is 172.24.0.0/16 other domain is 172.25.0.0/16, now refuse domain 172.25.0.0/16 to access the server.

Answer:

Explanation:
See explanation below.
Explanation/Reference:
Explanation:
iptables -F
service iptables save
iptables -A INPUT -s 172.25.0.0/16 -j REJECT
service iptables save
service iptables restart

 

NEW QUESTION 53
Configure your NFS services. Share the directory by the NFS Shared services.

Answer:

Explanation:
see explanation below.
Explanation
/etc/init.d/rpcbind start
/etc/init.d/nfslock start
/etc/init.d/nfs start
chkconfig rpcbind on
chkconfig nfslock on
chkconfig nfs on
showmount -e localhost

 

NEW QUESTION 54
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:

Explanation:
see explanation below.
Explanation
# cat /etc/testfile | while read line;
do
echo $line | grep abcde | tee -a /tmp/testfile
done
OR
grep `abcde' /etc/testfile > /tmp/testfile

 

NEW QUESTION 55
SIMULATION
There is a local logical volumes in your system, named with shrink and belong to VGSRV volume group, mount to the /shrink directory. The definition of size is 320 MB.
Requirement:
Reduce the logical volume to 220 MB without any loss of data. The size is allowed between 200-260 MB after reducing.

Answer:

Explanation:
See explanation below.
Explanation/Reference:
Explanation: cd;umount /shrink
e2fsck -f /dev/mapper/vgsrv-shrink
resize2fs /dev/mapper/vgsrv-shrink 220M
lvreduce -L 220M /dev/mapper/vgsrv-shrink
mount -a

 

NEW QUESTION 56
Set cronjob for user natasha to do /bin/echo hiya at 14:23.

Answer:

Explanation:
see explanation below.
Explanation
# crontab -e -u natasha
23 14 * * * /bin/echo hiya
wq!

 

NEW QUESTION 57
Configure the permissions of /var/tmp/fstab
Copy the file /etc/fstab to /var/tmp/fstab. Configure the permissions of /var/tmp/fstab so that:
the file /var/tmp/fstab is owned by the root user.
the file /var/tmp/fstab belongs to the group root.
the file /var/tmp/fstab should not be executable by anyone.
the user natasha is able to read and write /var/tmp/fstab.
the user harry can neither write nor read /var/tmp/fstab.
all other users (current or future) have the ability to read /var/tmp/fstab.

Answer:

Explanation:
see explanation below.
Explanation
* cp -a /etc/fstab /var/tmp
* cd /var/tmp
* ls -l
* getfacl /var/tmp/fstab
* chmod ugo-x /var/tmp/fstab
[ No need to do this, there won't be execute permission for the file by default]
# setfacl -m u:natasha:rw /var/tmp/fstab # setfacl -m u:harry:0 /var/tmp/fstab(zero)
[Read permission will be there for all the users, by default. Check it using ls -l /var/tmp/fstab] Verify by
[ ls -la /var/tmp/fstab]

 

NEW QUESTION 58
SIMULATION
Configure the NTP service in your system.

Answer:

Explanation:
See explanation below.
Explanation/Reference:
Explanation: system-config-date &

 

NEW QUESTION 59
Add user: user1, set uid=601
Password: redhat
The user's login shell should be non-interactive.

Answer:

Explanation:
see explanation below.
Explanation
# useradd -u 601 -s /sbin/nologin user1
# passwd user1
redhat

 

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

Answer:

Explanation:
# 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

 

NEW QUESTION 61
SIMULATION
Please open the ip_forward, and take effect permanently.

Answer:

Explanation:
See explanation below.
Explanation/Reference:
Explanation:
vim /etc/sysctl.conf net.ipv4.ip_forward = 1
sysctl -w (takes effect immediately)
If no "sysctl.conf" option, use these commands:
sysctl -a |grep net.ipv4
sysctl -P net.ipv4.ip_forward = 1
sysctl -w

 

NEW QUESTION 62
Create a swap space, set the size is 600 MB, and make it be mounted automatically after rebooting the system (permanent mount).

Answer:

Explanation:
see explanation below.
Explanation
* if=/dev/zero of=/swapfile bs=1M count=600 mkswap /swapfile
/etc/fstab:
/swapfile swap swap defaults 0 0 mount -a

 

NEW QUESTION 63
SIMULATION
Make a swap partition having 100MB. Make Automatically Usable at System Boot Time.

Answer:

Explanation:
See explanation below.
Explanation/Reference:
Explanation:
Use fdisk /dev/hda ->To create new partition.
Type n-> For New partition
It will ask for Logical or Primary Partitions. Press l for logical.
It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
Type the Size: +100M ->You can Specify either Last cylinder of Size here.
Press P to verify the partitions lists and remember the partitions name. Default System ID is 83 that means Linux Native.
Type t to change the System ID of partition.
Type Partition Number
Type 82 that means Linux Swap.
Press w to write on partitions table.
Either Reboot or use partprobe command.
mkswap /dev/hda? ->To create Swap File system on partition.
swapon /dev/hda? ->To enable the Swap space from partition.
free -m ->Verify Either Swap is enabled or not.
vi /etc/fstab/dev/hda? swap swap defaults 0 0
Reboot the System and verify that swap is automatically enabled or not.

 

NEW QUESTION 64
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.

Answer:

Explanation:
see explanation below.
Explanation
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

 

NEW QUESTION 65
Add a new logical partition having size 100MB and create the data which will be the mount point for the new partition.

Answer:

Explanation:
see explanation below.
Explanation
1. Use fdisk /dev/hda-> To create new partition.
2. Type n ->For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Keys
5. Type the size: +100M you can specify either Last cylinder of size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
OR
1. mke2fs -j /dev/hda? ->To create ext3 filesystem.
2. vi /etc/fstab
3. Write:
/dev/hda? /data ext3 defaults 0 0
4. Verify by mounting on current sessions also:
mount /dev/hda? /data

 

NEW QUESTION 66
......

EX200 Dumps With 100% Verified Q&As - Pass Guarantee or Full Refund: https://www.itcertmagic.com/RedHat/real-EX200-exam-prep-dumps.html

Latest EX200 PDF Dumps & Real Tests Free Updated Today: https://drive.google.com/open?id=1H8Ad-mwPtBPpXYAAn6v-Y_ZkSX38_Imn