Skip to main content

Changing Directory Permissions in Linux

This guide provides step-by-step instructions for changing the ownership and permissions of a whole directory in Linux. Properly setting directory permissions is crucial for maintaining security and ensuring that the correct users have access to necessary files and directories.

Steps to Change Directory Ownership and Permissions

Step 1: Change Directory Ownership

To change the ownership of a directory and all its contents, use the chown command with the -R (recursive) option. Replace mac:mac with the desired user and group, and <directory> with the path to the directory you want to change.

sudo chown -R mac:mac <directory>

Example: If you want to change the ownership of the directory recyclarr to the user mac and the group mac, use:

sudo chown -R mac:mac recyclarr

Step 2: Set Directory Permissions

To set the permissions for a directory and all its contents, use the chmod command with the -R (recursive) option. Replace 755 with the desired permission set, and recyclarr with the path to the directory you want to change.

sudo chmod -R 755 recyclarr

Example: If you want to set the permissions of the directory recyclarr so that the owner has read, write, and execute permissions, and the group and others have read and execute permissions, use:

sudo chmod -R 755 recyclarr

Understanding Permissions

The permission set 755 translates to:

  • 7 (owner): read (4), write (2), and execute (1) = 4+2+1 = 7
  • 5 (group): read (4) and execute (1) = 4+1 = 5
  • 5 (others): read (4) and execute (1) = 4+1 = 5

Summary

By using chown and chmod with the -R option, you can recursively change the ownership and permissions of an entire directory. This ensures that all files and subdirectories within the specified directory inherit the new settings, which is essential for maintaining consistent access control.