0% found this document useful (0 votes)
189 views

Exdump 3

This document provides 111 questions and answers to help study for the EX200 Red Hat Certified System Administrator (RHCSA) exam. It shares details on setting up an FTP server, YUM software repositories, creating users and groups, changing file permissions, partitioning and mounting drives, increasing logical volume sizes, and setting up NIS home directories. The questions cover configuring key system administration tasks and the document encourages purchasing EX200 exam prep materials from Certleader to pass the exam.

Uploaded by

chalapathirao
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
189 views

Exdump 3

This document provides 111 questions and answers to help study for the EX200 Red Hat Certified System Administrator (RHCSA) exam. It shares details on setting up an FTP server, YUM software repositories, creating users and groups, changing file permissions, partitioning and mounting drives, increasing logical volume sizes, and setting up NIS home directories. The questions cover configuring key system administration tasks and the document encourages purchasing EX200 exam prep materials from Certleader to pass the exam.

Uploaded by

chalapathirao
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

100% Valid and Newest Version EX200 Questions & Answers shared by Certleader

https://www.certleader.com/EX200-dumps.html (111 Q&As)

EX200 Dumps

EX200 Red Hat Certified System Administrator (RHCSA) Exam

https://www.certleader.com/EX200-dumps.html

The Leader of IT Certification visit - https://www.certleader.com


100% Valid and Newest Version EX200 Questions & Answers shared by Certleader
https://www.certleader.com/EX200-dumps.html (111 Q&As)

NEW QUESTION 1
Configure the FTP service in your system, allow remote access to anonymous login and download the program by this service. Service is still running after system
rebooting.

Answer:

Explanation: yum install vsftpd


/etc/init.d/vsftpd start
chkconfig vsftpd on

NEW QUESTION 2
A YUM repository has been provided at http://server.domain11.example.com/pub/x86_64/Server. Configure your system to use this location as a default
repository.

Answer:

Explanation:
vim/etc/yum.repos/base.repo
[base]
name=base
baseurl= http://server.domain11.example.com/pub/x86_64/Server
gpgcheck=0
enable=1
Save and Exit
Use yum list for validation, the configuration is correct if list the package information. If the Yum configuration is not correct then maybe cannot answer the
following questions.

NEW QUESTION 3
Who ever creates the files/directories on a data group owner should automatically be in the same group owner as data.

Answer:

Explanation: 1. chmod g+s /data


2. Verify using: ls -ld /data
Permission should be like this: drwxrws--- 2 root sysadmin 4096 Mar 16 18:08 /data
If SGID bit is set on directory then who every users creates the files on directory group owner automatically the owner of parent directory. To set the SGID bit:
chmod g+s directory To Remove the SGID bit: chmod g-s directory

NEW QUESTION 4
Configure a default software repository for your system.
One YUM has already provided to configure your system on http://server.domain11.example.com/pub/ x86_64/Server, and can be used normally.

Answer:

Explanation: Yum-config-manager
--add-repo=http://content.example.com/rhel7.0/x86-64/dvd” is to generate a file vim content.example.com_rhel7.0_x86_64_dvd.repo, Add a line gpgcheck=0
Yumcleanall
Yumrepolist
Almost 4305 packages are right, Wrong Yum Configuration will lead to some following questions cannot be worked out.

NEW QUESTION 5
According the following requirements to create user, user group and the group members:
- A group named admin.
- A user named mary, and belong to admin as the secondary group.
- A user named alice, and belong to admin as the secondary group.
- A user named bobby, bobby’s login shell should be non-interactive. Bobby not belong to admin as the secondary group.
Mary, Alice, bobby users must be set "password" as the user's password.

Answer:

Explanation: see explanation below.


groupadd admin
useradd -G admin mary
useradd -G admin alice
useradd -s /sbin/nologin bobby
echo "password" | passwd --stdin mary
echo "password" | passwd --stdin alice
echo "password" | passwd --stdin bobby

The Leader of IT Certification visit - https://www.certleader.com


100% Valid and Newest Version EX200 Questions & Answers shared by Certleader
https://www.certleader.com/EX200-dumps.html (111 Q&As)

NEW QUESTION 6
Create a Shared Directory.
Create a shared directory /home/admins, make it has the following characteristics:
/home/admins belongs to group adminuser
This directory can be read and written by members of group adminuser Any files created in /home/ admin, group automatically set as adminuser.

Answer:

Explanation: mkdir /home/admins


chgrp -R adminuser /home/admins
chmodg+w /home/admins
chmodg+s /home/admins

NEW QUESTION 7
Make on /archive directory that only the user owner and group owner member can fully access.

Answer:

Explanation:
chmod 770 /archive
Verify using : ls -ld /archive Preview should be like:
drwxrwx--- 2 root sysuser 4096 Mar 16 18:08 /archive
To change the permission on directory we use the chmod command. According to the question that only the owner user (root) and group member (sysuser) can
fully access the directory so: chmod 770 /archive

NEW QUESTION 8
Create one partitions having size 100MB and mount it on data.

Answer:

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 Key.
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
mke2fs -j /dev/hda? To create ext3 filesystem.
vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2
Verify by mounting on current Sessions also: mount /dev/hda? /data

NEW QUESTION 9
One Logical Volume named /dev/test0/testvolume1 is created. The initial Size of that disk is 100MB now you required more 200MB. Increase the size of Logical
Volume, size should be increase on online.

Answer:

Explanation:
lvextend -L+200M /dev/test0/testvolume1 Use lvdisplay /dev/test0/testvolume1)
ext2online -d /dev/test0/testvolume1
lvextend command is used the increase the size of Logical Volume. Other command lvresize command also here to resize. And to bring increased size on online
we use the ext2online command.

NEW QUESTION 10
Create a user alex with a userid of 3400. The password for this user should be redhat.

Answer:

Explanation:
useradd -u 3400 alex

The Leader of IT Certification visit - https://www.certleader.com


100% Valid and Newest Version EX200 Questions & Answers shared by Certleader
https://www.certleader.com/EX200-dumps.html (111 Q&As)

passwd alex
su -alex

NEW QUESTION 11
One Domain RHCE is configured in your lab, your domain server is server1.example.com. nisuser2001, nisuser2002, nisuser2003 user are created on your server
192.168.0.254:/rhome/stationx/nisuser2001. Make sure that when NIS user login in your system automatically mount the home directory. Home directory is
separately shared on server /rhome/stationx/ where x is your Station number.

Answer:

Explanation:
use the authconfig --nisserver=<NIS SERVER> --nisdomain=<NIS DOMAIN> -- update
Example: authconfig --niserver=192.168.0.254 --nisdomain=RHCE --update or system-config-authentication
Click on Enable NIS
Type the NIS Domain: RHCE
Type Server 192.168.0.254 then click on next and ok
You will get a ok message.
Create a Directory /rhome/stationx where x is your station number.
vi /etc/auto.master and write at the end of file /rhome/stationx /etc/auto.home --timeout=60
vi /etc/auto.home and write
* -rw,soft,intr 192.168.0.254:/rhome/stationx/&
Note: please specify your station number in the place of x.
Service autofs restart
Login as the nisuser2001 or nisuser2002 on another terminal will be Success. According to question, RHCE domain is already configured. We have to make a
client of RHCE domain and automatically mount the home directory on your system. To make a member of domain, we use the authconfig with option or system-
config authentication command. There a are lots of authentication server i.e NIS, LDAB, SMB etc. NIS is a RPC related Services, no need to configure the DNS,
we should specify the NIS server address.
Here Automount feature is available. When user tried to login, home directory will automatically mount. The automount service used the /etc/auto.master file. On
/etc/auto.master file we specified the mount point the configuration file for mount point.

NEW QUESTION 12
......

The Leader of IT Certification visit - https://www.certleader.com


100% Valid and Newest Version EX200 Questions & Answers shared by Certleader
https://www.certleader.com/EX200-dumps.html (111 Q&As)

Thank You for Trying Our Product

* 100% Pass or Money Back


All our products come with a 90-day Money Back Guarantee.
* One year free update
You can enjoy free update one year. 24x7 online support.
* Trusted by Millions
We currently serve more than 30,000,000 customers.
* Shop Securely
All transactions are protected by VeriSign!

100% Pass Your EX200 Exam with Our Prep Materials Via below:

https://www.certleader.com/EX200-dumps.html

The Leader of IT Certification visit - https://www.certleader.com


Powered by TCPDF (www.tcpdf.org)

You might also like