Winter Special - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: top65certs

RH202 Exam Dumps : RHCT (Redhat Certified Technician) RH202

PDF
RH202 pdf
 Real Exam Questions and Answer
 Last Update: Dec 3, 2024
 Question and Answers: 140
 Compatible with all Devices
 Printable Format
 100% Pass Guaranteed
$29.75  $84.99
RH202 exam
PDF + Testing Engine
RH202 PDF + engine
 Both PDF & Practice Software
 Last Update: Dec 3, 2024
 Question and Answers: 140
 Discount Offer
 Download Free Demo
 24/7 Customer Support
$47.25  $134.99
Testing Engine
RH202 Engine
 Desktop Based Application
 Last Update: Dec 3, 2024
 Question and Answers: 140
 Create Multiple Test Sets
 Questions Regularly Updated
  90 Days Free Updates
  Windows and Mac Compatible
$35  $99.99

Verified By IT Certified Experts

CertsTopics.com Certified Safe Files

Up-To-Date Exam Study Material

99.5% High Success Pass Rate

100% Accurate Answers

Instant Downloads

Exam Questions And Answers PDF

Try Demo Before You Buy

Certification Exams with Helpful Questions And Answers

RHCT (Redhat Certified Technician) RH202 Questions and Answers

Question 1

There are more then 400 Computers in your Office. You are appointed as a System Administrator. But you don’t have Router. So, you are going to use your One Linux Server as a Router. How will you enable IP packets forward?

Answer and Explanation:

1. /proc is the virtual filesystem, we use /proc to modify the kernel parameters at running time.

# echo “1” >/proc/sys/net/ipv4/ip_forward

2. /etc/sysctl.conf when System Reboot on next time, /etc/rc.d/rc.sysinit scripts reads the file /etc/sysctl.conf. To enable the IP forwarding on next reboot also you need to set the parameter.

net.ipv4.ip_forward=1

Here 0 means disable, 1 means enable.

Options:

Buy Now
Question 2

Create the group named sysadmin.

Answer and Explanation:

1.groupadd sysadmin

groupadd command is used to create the group and all group information is stored in /etc/group file.

Options:

Question 3

There is one partition /dev/hda14 mounted on /data. The owner of /data is root user and root group. And Permission is full to owner user, read and execute to group member and no permission to others. Now you should give the full permission to user user1 without changing pervious permission.

Answer and Explanation:

We know that every files/directories are owned by certain user and group. And Permissions are defines to owner user, owner group and other.

-rwxr-x--- Full permission to owner user, read and write to owner group and no permission to others.

According to question: We should give the full permission to user user1 without changing the previous permission.

ACL (Access Control List), in ext3 file system we can give permission to certain user and certain group without changing previous permission. But that partition should mount using acl option. Follow the steps

  • vi /etc/fstab

/dev/hda14/dataext3defaults,acl0 1

  • Either Reboot or use: mount –o remount /data
  • setfacl –m u:user1:rwx /data
  • Verify using: getfacl /data

Options: