Linux 权限设置

1:

  chmod u+x filea    -- 这个为u用户增加execute 权限!

  

2:

      chmod u-r,g-r,o-r filea        对user,group,others 都减去read 权限!

  

3:

  chmod 777 filea             对user,group,others 都加上rwx权限!

  

原文地址:https://www.cnblogs.com/JiangLe/p/4161400.html