User Tools

Site Tools


adding_and_removing_linux_permissions

This is an old revision of the document!


Adding and Removing Linux Permissions



Grant the execute permission to the group.

  ls -l example.py
  -rw-r--r-- 1 pi pi 4452 Jul 25 18:01 example.py
  chmod g+x example.py --- g is for group, x is for execute
  ls -l example.py
  
  -rw-r-xr-- 1 pi pi 4452 Jul 25 18:01 example.py
  The group rights have changed from ----r------ ----r-x---


adding_and_removing_linux_permissions.1469471681.txt.gz · Last modified: 2023/03/09 22:35 (external edit)