I have some files with 755 and i need to change them to 750, but i am not sure if this can affect some process.
我有一些755的文件,我需要把它们改成750,但是我不确定这是否会影响到某些过程。
I am changin JARs, XMLs, LOGs and properitees files.
我是changin jar、XMLs、日志和属性文件。
Can someone explain to me the difference between these two permission set?
谁能给我解释一下这两个权限集的区别吗?
Thanks!
谢谢!
1 个解决方案
#1
63
0755
= User:rwx
Group:r-x
World:r-x
0755 =用户:rwx组:r-x世界:r-x
0750
= User:rwx
Group:r-x
World:---
(i.e. World: no access)
0750 =用户:rwx Group:r-x World:--(即World: no access)
r = read
w = write
x = execute (traverse for directories)
#1
63
0755
= User:rwx
Group:r-x
World:r-x
0755 =用户:rwx组:r-x世界:r-x
0750
= User:rwx
Group:r-x
World:---
(i.e. World: no access)
0750 =用户:rwx Group:r-x World:--(即World: no access)
r = read
w = write
x = execute (traverse for directories)