added file for linux/permissions.md

This commit is contained in:
scbj
2024-12-06 09:14:38 +01:00
parent 49ae49a772
commit 6b5f637dea

14
linux/permissions.md Normal file
View File

@@ -0,0 +1,14 @@
# 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