Changing file ownership and permissions
Webmin's file manager allows you to manipulate standard POSIX file ownership and permissions. The user interface for this function is easy to use and powerful, allowing you to modify files recursively, but distinguish between files and directories.
Every filesystem node (file, directory, and so on) on a UNIX-like system is owned by a single user and a single group. The system also stores permission information for each node with separate permissions for the file owner, group, and everybody else. Standard permissions are listed in the following table:
Binary notation |
Octal notation |
Permission name |
Description |
---|---|---|---|
|
|
None |
No permission of any kind. |
|
|
Execute |
Execute a program file or traverse a directory. In most cases, read permission is also needed. |
|
|
Write |
Write to file or create file entries in directory. |
|
|
Read |
Read file content or list directory content. |
|
|
Write and execute |
Combinations of... |