chmod/chkconfig命令使用

綠蘿綠蘿123發表於2017-06-09
1、chmod
linux檔案呼叫許可權分為三級,分別是檔案擁有者、群組、其他人

chmod u+x test.sh  只給擁有者加上可執行許可權

chmod g+x test.sh  只給群組身份加上可執行許可權

chmod o+x test.sh  只給其他人身份加上可執行許可權


chmod a+x test.sh      所有人擁有可執行許可權

如果要去掉某個身份的某個許可權,只需要將+變為-即可,例如去除其他人身份的可執行許可權
chmod o-x test.sh        去除其他人的可執行許可權

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29820633/viewspace-2140545/,如需轉載,請註明出處,否則將追究法律責任。

相關文章