Differences between CHMOD 755 vs 750 permissions set

帅比萌擦擦* 提交于 2019-12-18 18:48:35

问题


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.

I am changin JARs, XMLs, LOGs and properitees files.

Can someone explain to me the difference between these two permission set?

Thanks!


回答1:


0755 = User:rwx Group:r-x World:r-x

0750 = User:rwx Group:r-x World:--- (i.e. World: no access)

r = read
w = write
x = execute (traverse for directories)


来源:https://stackoverflow.com/questions/19547085/differences-between-chmod-755-vs-750-permissions-set

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!