--- tags: [Linux, permissions] created: Friday, April 11, 2025 --- # File permissions in Linux ## View permissions ```bash ls -rfl ``` ## What the letters mean ```bash drwxr-xr-x 2 thomas thomas 4096 Jan 21 18:00 dist drwxr-xr-x 2 thomas thomas 4096 Dec 29 12:50 out -rw-r--r-- 1 thomas thomas 1108 Jan 21 17:42 README.md ``` The first column of the permissions output is known as the file's _mode_. The sequence from left to right is as follows: ``` - - - - - - - - - - type user permissions group permissions other permissions ```