Linux terminal octal form of chmod

前提是你 提交于 2019-12-11 05:47:53

问题


I want to set a directory to

-rwx r-x r-x 

using the octal form of chmod

what should i type in the terminal after chmod? and how do i calculate the digits in octal form?


回答1:


It goes like this:

rwx rwx rwx
421 421 421

so what you want is

rwx r-x r-x
421 4-1 4-1
  7   5   5

so you type

chmod 755 nameofdirectory


来源:https://stackoverflow.com/questions/19085653/linux-terminal-octal-form-of-chmod

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!