Linux / UNIX - Display the permissions of a file
Q. How do I list or display the permission of a file using ssh? I don’t have GUI installed on a remote Linux computer.
A.You need to use ls command with -l option. File access permissions are displayed in the first column of the output, after the character for file type.
ls command List information about the FILEs. If no argument is given it will use the current directory by default.
Task: List a file's access permissions
Type ls -l command as follows to display permission for /etc/passwd file:
$ ls -l /etc/passwd
Output
-rw-r--r-- 1 root root 2453 Jul 17 16:25 /etc/passwd
Understanding the file permission
File access permissions appear in the first column of the output i.e. -rw-r--r--
- The first character - is nothing but the file type. – means regular file and d means directory.
- The next three characters (rw-) specify permissions for the user who owns the file
- The next three (r--) specify permissions for all members of the group that owns the file.
- Finally, the last three characters in the column (r--) specify permissions for all other users on the system.
Each character in permission has meaning as follows:
- r : Read permission.
- w : Write permission.
- x : Execute permission.
- - : No permission.
For example rw- permission means owner can read, write to a file but cannot execute the same.
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- Linux/UNIX: chmod error
- Examining the Linux / FreeBSD / UNIX filesystem with ls command
- Can I set the permissions on a symbolic link under Linux/UNIX?
- How do I list files inside compressed tar ball (gzip’d tar’d) archive?
- Linux or UNIX change file permissions recursively ( conditional )
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: access_permissions, bsd, Linux, ls_command, UNIX



Recent Comments
Today ~ 32 Comments
Yesterday ~ 1 Comment
Yesterday ~ 3 Comments
Yesterday ~ 2 Comments
Yesterday ~ 3 Comments