Skip to content
Linux File Permissions Explained

Linux File Permissions Explained

Permissions in Linux determine who can read, write, and execute a file. Understanding chmod, chown, and umask is essential.

Three permission bits

  • r for read
  • w for write
  • x for execute

Examples

chmod 644 file.txt
chmod +x script.sh
Last updated on