-----接着上次的继续写-----
功能项 | 命令实例 | 作用 | 重要性 |
chmod 777 hello.txt | 将hello.txtde 权限设置为rwxrwxrwx | 高 | |
chmod 643 hello.tx |
将 hello.txt 的权限设为 rw-r---wx | 高 | |
chmod 777 /opt/tes |
将目录/opt/test 的权限更改为 777 | 高 | |
chmod -R 755 /opt/test |
将目录/opt/test 及其下所有文件和子目录的权限更改 为 755 |
高 | |
chown | chown mary hello.txt | 将 hello.txt 的文件所有者改为 mary | 中 |
chown mary /opt/test |
将目录/opt/test 的所有者改为 mary | 中 | |
chown -R mary /opt/test |
将目录/opt/test 及其所有子目录和文件的所有者改为 mary |
中 | |
chgrp | chgrp test hello.txt | 将hello.txt所在的组改为test | 中 |
chgrp mary /opt/test | 将目录/opt/test所在的组改为mary | 中 | |
chgrp -R mary /opt/test | 将目录/opt/test及所有子目录和文件所在组改为mary | 中 | |
passwd | passwd mary | 修改mary的密码 | 中 |