首页 > 系统服务 > 详细

Linux chmod

时间:2020-06-16 18:46:28      阅读:57      评论:0      收藏:0      [点我收藏+]

the 10

drwxr-xr-x

the first bit:

- regular file
b block special file
c character special file
s socket
d directory
l link
p pipe

the other nine bits

User --- Group --- Others

chmod [parameter] [mode] [file]

// add  execute right to user 
chmod u+x a.file  //u means user, g means group, o means other , + means add, - means minus, = means assign

// add write right to group and others
chmod g+w, o+w a.file

//delete the execute right from user, delete write right from group and others
chmod u-x, g-w, o-w a.file 

use the digit in chmod

4 means r 2 means w 1 means x Ok, this is really important

chmod 744 a.file // rwxr--r--
chmod 755 a.file //rwxr-xr-x
// DON‘T USE 777, That‘s really silly.

Linux chmod

原文:https://www.cnblogs.com/nedrain/p/13143166.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!