#
#
#
#
#
#

Meaning of CHMOD

Posted by addidnugroho On Wednesday, August 19, 2009

Chmod is the option for us to make file or folder have privilage status.
Standard form of chmod is:

$ chmod 421

The first digit : the file / folder is for user.
The second digit : file / folder is for group.
The third: universal user.

The amount of the number, has meanings:
4 >> Allow Read
2 >> Allow Write
1 >> Allow Execute

It is a standar number of chmod. If you meet 7,6,5,3, it must amount of standar number.
7 = 4 + 2 + 1
6 = 4 + 2
5 = 4 + 1
3 = 2 + 1

notes:
.. parent

elshadino act

0 comments