美国服务器的linux改权限的方法有哪些

已关闭留言

美国服务器的linux中使用chmod命令修改权限

chmod命令作用:

linuxchmod命令的作用是用于控制用户对文件的权限。

chmod命令语法:

chmod [-cfvR] [–help] [–version]

chmod命令使用方法:

例:添加可执行权限给用户与用户组

chmod u+x, g+x filepath

例::删除用户组的可执行权限

chmod g-x fielpath

例:将文件test.txt设为所有人都能读

chmod ugo+r test.txt

例:将文件test.txt设为所有人都能写

chmod ugo+w test.txt

例:将目前目录下的所有文件与子目录皆设为任何人可读取

chmd -R a+r ./*

用数字表示 4r 2w 1x

例:test.txt设置成 -rw-r–r–

chmod 644 test.txt

例:test.txt设置成 -rwxr–r–

chmod 744 test.txt

例:将当前目录test设置drw-r–r–

chmod 644 ./test

例:将当前目录test以及子目录设置drw-r–r–

chmod -R 644 ./test