Files
collection/linux/permissions.md
2024-12-06 09:14:38 +01:00

219 B

permissions

Linux permissions are ordered as follows:

  • owner
  • group
  • others

octal permissions

In octal representation the actions (read, write, execute) have the values:

  • read = 4
  • write = 2
  • execute = 1