Page 44 - RHEL8 BOOK
P. 44
12. To set the full permission
[root@sun ~]# chmod 777 file1
[root@sun ~]# ls -ld file1
-rwxrwxrwx 1 root root 0 Oct 9 09:28 file1
13. Assign the permission with Recursively
[root@sun ~]# chmod -R 777 dir1
[root@sun ~]# ls -ld dir1
drwxrwxrwx 2 root root 4096 Oct 9 10:06 dir1
Assign the ownership-In this way we can use the two commands
1. chown
2. chgrp
chown-we can change the owner as well as we can change the owner / group at a time also
[root@sun ~]# chown <owner> <filename>
[root@sun ~]# chown <group>:<group> <filename>
[root@sun ~]# chown rama:sales file1
chgrp-we can change the group only
[root@sun ~]# chgrp <group-name> <file name>
[root@sun ~]# chgrp root file1
change the permission in GUI mode
[root@sun ~] # nautilus
When ever we execute the nautilus command only. The user's home directory defaultly will open in GUI
mode. If we want to open the directory in GUI mode, after nautilus command mention on the <dir-name>
[root@sun ~] # nautilus dir1
S. Pradhan
(MCA, MBA-IT, BCA, CCNA, MCSA 2012, RHCE, ETHICAL HACKING)
Email Id:-spradhan.iiht@gmail.com
44