linux亦步亦趋(11)文件权限管理
chown 命令:更改文件或文件夹的所有者
用法:chown 用户名 文件或文件夹名
实例如下:
-rwxrwxrwx 1 root root 0 07-22 15:34 test.sh [root@localhost test]# chown test test.sh [root@localhost test]# ls -l 总计 0 -rwxrwxrwx 1 test root 0 07-22 15:34 test.sh
注意:用户名是系统中必须存在的用户名,我们也可以临时添加一个命令如下:useradd newusername 设置密码:passwd 用户名,
实例如下:
[root@localhost test]# useradd newuser [root@localhost test]# passwd newuser Changing password for user newuser. New UNIX password: BAD PASSWORD: it is based on a dictionary word Retype new UNIX password: passwd: all authentication tokens updated successfully. [root@localhost test]#
chgrp命令:更改文件或者文件夹所属组
用法:chgrp 组名 文件或文件夹名
实例如下:
[root@localhost test]# ls -l 总计 0 -rwxrwxrwx 1 test root 0 07-22 15:34 test.sh [root@localhost test]# chgrp test test.sh [root@localhost test]# ls -l 总计 0 -rwxrwxrwx 1 test test 0 07-22 15:34 test.sh
注意:组必须是一个存在的组名。我们也可以临时加一个组、命令如下:groupadd newgroupname
[root@localhost test]# groupadd test1 [root@localhost test]#
相关推荐
敏敏张 2020-11-11
SCNUHB 2020-11-10
小木兮子 2020-11-11
wwwsurfphpseocom 2020-10-28
WasteLand 2020-10-18
Cocolada 2020-11-12
杜鲁门 2020-11-05
shirleypaddy 2020-10-19
qingmumu 2020-10-19
Testingba工作室 2020-09-15
周公周金桥 2020-09-13
专注前端开发 2020-08-16
emagtestage 2020-08-16
heniancheng 2020-08-15
hanjinixng00 2020-08-12
小方哥哥 2020-08-09
83327712 2020-07-30
卖小孩的咖啡 2020-07-21
wqiaofujiang 2020-07-05