Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.

Exam EX200 Topic 1 Question 9 Discussion

Actual exam question for RedHat's EX200 exam
Question #: 9
Topic #: 1
Make on /archive directory that only the user owner and group owner member can fully access.

Suggested Answer:

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

by ubiquituz at Nov 25, 2024, 01:50 PM

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
whitebeard pirate
2024-12-23 07:59:42
chmod 770 /archive
upvoted 1 times
...
ubiquituz
2024-11-25 13:50:52
1
sudo mkdir –p /archive
2
Set Permissions: Grant full access to the owner and group, but restrict access for others.
sudo chmod 770 /archive
7 (rwx) for the owner: full permissions.
7 (rwx) for the group: full permissions.
0 for others: no permissions.
3
Verify the Permissions: Use the ls -ld command to confirm:
ls -ld /archive
The output should look like this (replace user and group with actual names):
drwxrwx--- 2 user group 4096 <timestamp> /archive
upvoted 1 times
...
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.