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!

up vote 65 down vote accepted

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)
  • User - means the account user (admin or other added user) in the machine - what's the difference between Group and World? – rm -rf Dec 18 '17 at 13:31
  • "user" means the account user. Group would mean other people in a defined "group" of users (like members of a group, "lab256" say, would be able to have r-w access. World would mean anyone else that can log in to that particular machine. – AruniRC Jan 29 at 19:15

Your Answer

 

By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Not the answer you're looking for? Browse other questions tagged or ask your own question.