Skip to content

Instantly share code, notes, and snippets.

@emrahyumuk
Last active September 27, 2017 08:00
Show Gist options
  • Save emrahyumuk/6ca41792231d011c9912dc86c71185a3 to your computer and use it in GitHub Desktop.
Save emrahyumuk/6ca41792231d011c9912dc86c71185a3 to your computer and use it in GitHub Desktop.
Folder Permissions On Linux

This would give all permissions (Read, Write, Execute) to you

sudo chmod 777 -R /path to folder 

The permissions (in this case 777) are as follow:

  • 7 - Full (Read, Write & Execute)
  • 6 - read and write
  • 5 - read and execute
  • 4 - read only
  • 3 - write and execute
  • 2 - write only
  • 1 - execute only
  • 0 - none
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment