Table of Contents
Eiciel is an application that allows you to modify file ACLs permissions.
Before explaining what ACLs are we have to see how traditional UNIX permissions work.
Traditionally, in UNIX, files have three kind of permissions associated to them. Those permissions, called UGO (from User, Group and Others) allow you to set whether a user can read, write or execute a file.
The access will be granted or denied depending on which user is accessing the file. The owner has his own permissions (User). If the user is not the owner but belongs to the group owning the file then group permissions are applied (Group). Finally, if the user is not the owner neither belongs to the file's group then Other permissions are applied.
Read permission allow, in a file, to read it. In a directory it permits listing the directory's content. Write permission in files allows to modify their data. In directories it allows creating or deleting their files (or directories). Execution permission in files allow them to run as programs. In directories it allows to enter them.
Permissions can only be changed by the owner (or the superuser). The following figure briefs UGO permissions.
UGO permissions are suitable for most scenarios. However, IEEE POSIX workgroup was conscious that sometimes they are too limiting and defined an interface in POSIX 1003.1e DRAFT 17 intended to manage file ACLs. That proposal was left out from the standard but is implemented in several BSD (Solaris and FreeBSD 5) and GNU/Linux (as of version 2.6 of the kernel).
ACL allow to set permissions in a per-user or per-group fashion. For instance, it is not feasible in UGO permissions to have two users (bob and alice) where bob can only read, alice can read and write and no other user can access the file.
Eiciel is an application for the GNOME environment. To be useful Eiciel needs an ACL-enabled system.
ACL support is given by the operating system. Nowadays only Linux 2.6 (or 2.4 with the proper patch) and FreeBSD 5 support ACL. However not all the filesystems that can be used on those systems have support for ACL.
In Linux 2.6, when writing this documentation, the following filesystems where ACL-capable: Ext2/Ext3, XFS, JFS and ReiserFS. ACL must be enabled in the kernel. It is also possible that NFS and CIFS filesystems become ACL-capable in the future.
Note also that ACL must be turned on. In Linux 2.6/2.4 you can do it setting the acl option in /etc/fstab. Consult your distribution documentation