Chmod 755
Chmod 755
Out of context: Reply #4
- Started
- Last post
- 7 Responses
- mikhail0
d rwx rwx rwx
"d" stands for directory, files do not have this prefix
r for read
w for write
x for execute
first rwx - owner
second rwx - group
third rwx - other-rwx------ (chmod 700) means you have full access to the file and noone else does
-rwxr--r-- (chmod 755) means you have full access to the file and read only access for everyone else
-rwxrwxrwx (chmod 777) - full access for everyone