Differences between CHMOD 755 vs 750 permissions set

后端 未结 1 1024
星月不相逢
星月不相逢 2021-01-03 17:44

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 changing JARs, XMLs, LOGs, and properties files.<

相关标签:
1条回答
  • 2021-01-03 18:31

    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)
    
    0 讨论(0)
提交回复
热议问题