Forrest logo
tool overview
On this page you find all important commands for the CLI tool setfacl. If the command you are looking for is missing please ask our AI.

setfacl

setfacl is a command line tool used in Unix-like operating systems, such as Linux, to manage file system access control lists (ACLs). ACLs provide a more granular level of control over file and directory permissions than the traditional owner, group, and other permissions. It allows users to set access permissions for multiple users or groups.

The setfacl command allows users to modify existing ACLs or add new ones to files and directories. It provides flexibility in specifying permissions, including read, write, execute, and additional specific permissions like delete, append, and more.

With setfacl, users are able to grant or deny permissions to specific users or groups in a more nuanced way. It allows for setting default ACLs, which are automatically applied to newly created files and directories within a specified directory.

The tool supports both named users and groups, as well as numerical user and group identifiers. It can be used in conjunction with the getfacl command to view the existing ACLs of files and directories.

setfacl is a powerful and essential tool for system administrators and users who require fine-grained control over access permissions in Unix-like systems.

List of commands for setfacl:

  • setfacl:tldr:089f5 setfacl: Remove all ACL entries of a file.
    $ setfacl -b ${file}
    try on your machine
    explain this command
  • setfacl:tldr:1c2f6 setfacl: Modify ACL of a file for user with read and write access.
    $ setfacl -m u:${username}:rw ${file}
    try on your machine
    explain this command
  • setfacl:tldr:79c00 setfacl: Remove ACL of a file for a user.
    $ setfacl -x u:${username} ${file}
    try on your machine
    explain this command
  • setfacl:tldr:ae9e3 setfacl: Modify default ACL of a file for all users.
    $ setfacl -d -m u::rw ${file}
    try on your machine
    explain this command
tool overview