Book Image

Webmin Administrator's Cookbook

By : Michal Karzynski
Book Image

Webmin Administrator's Cookbook

By: Michal Karzynski

Overview of this book

Table of Contents (19 chapters)
Webmin Administrator's Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

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

000

0

None

No permission of any kind.

001

1

Execute

Execute a program file or traverse a directory.

In most cases, read permission is also needed.

010

2

Write

Write to file or create file entries in directory.

100

4

Read

Read file content or list directory content.

011

3

Write and execute

Combinations of...