chmod – change file/folder permission in ubuntu

sample command:

 sudo chmod 754 /opt/lampp/htdoc

chmod command sets the permission of a file or folder. chmod command uses three digit code as an argument and the file or folder location.

In the example,

  • 7 – Owner(current user)
  • 5 – Group(set by owner)
  • 4 – anyone else

The fundamental concept:

Execute is 1, Write is 2 and Read is 4.

Sum of these basic ones makes combination of permissions:

  • 0 – no permission, this person cannot read, write or execute
  • 1 – execute only
  • 2 – write only
  • 3 – execute and write only (1 + 2)
  • 4 – read only
  • 5 – execute and read only (1 + 4)
  • 6 – write and read only (2 + 4)
  • 7 – execute, write and read (1 + 2 + 3)

source: online

About these ads

10 Responses to chmod – change file/folder permission in ubuntu

  1. thanks, now i understand file permissions.

  2. gud job thanks

  3. Thanks, you saved mee, keep it up ! :)

  4. Pingback: Amazon Elastic Computer Cloud (EC2) ตอน 9 : เซ็ต permission | select2web.com

  5. is ther any way to change permissions for subfolders at the same time?

  6. Thank you !! This helped me a lot !!

  7. Thanks brother

  8. nicely explained… thanks : )

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s