0% found this document useful (0 votes)
7 views2 pages

Set File Permissions for demo.txt

Uploaded by

lrrajkumar28
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)
7 views2 pages

Set File Permissions for demo.txt

Uploaded by

lrrajkumar28
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

Create a file with .txt extension (/home/[Link]).

Change the permission set if that


file, so that any user can read it, group can read/write & owner can read/write/execute
it.

Create a file with .txt extension (/home/[Link]).

root@lakshmi:/home/rajkumar_21# touch /home/[Link]

Change the permission set if that file, so that any user can read it, group can
read/write & owner can read/write/execute it.

root@lakshmi:/home/rajkumar_21# chmod u=rwx,g=rw,o=r /home/[Link]

u=rwx owner can read, write, and execute


g=rw group can read and write
o=r others can read

Verify

-rwxrw-r-- 1 root root 0 Sep 2 10:23 /home/[Link]

Everything at once

rajkumar_21@lakshmi:~$ sudo -s
[sudo] password for rajkumar_21:
root@lakshmi:/home/rajkumar_21# touch /home/[Link]
root@lakshmi:/home/rajkumar_21# chmod u=rwx,g=rw,o=r /home/[Link]
root@lakshmi:/home/rajkumar_21# ls -l /home/[Link]
-rwxrw-r-- 1 root root 0 Sep 2 10:23 /home/[Link]
root@lakshmi:/home/rajkumar_21#

You might also like