文件安全与权限 笔记 (2)

例子:myfile的权限从bin转给了root

[root@iZ2ze5p0lt0ld1jussmap7Z ~]# ls -l total 0 -rwxr--r-- 1 bin root 0 Oct 9 11:19 myfile [root@iZ2ze5p0lt0ld1jussmap7Z ~]# chown root myfile [root@iZ2ze5p0lt0ld1jussmap7Z ~]# ls -l total 0 -rwxr--r-- 1 root root 0 Oct 9 11:19 myfile chrgp

同理,是转移用户组,命令只是把chown换为chrgp,不再测试

找出组的命令

groups 找出当前用户的属于组

id 查询uid,gid,groups

groups 找出这个username 用户所在组

缺省值

umask:每个用户的unmask确定了创建文件的缺省权限,防止非同组用户对你有不希望的权限

符号链接(软链接)

ln [-s] source_path target_path

例子:创建myfile的符号链接

[root@iZ2ze5p0lt0ld1jussmap7Z ~]# ls myfile [root@iZ2ze5p0lt0ld1jussmap7Z ~]# ln -s myfile temp [root@iZ2ze5p0lt0ld1jussmap7Z ~]# ls -l total 0 -rwxr--r-- 1 root root 0 Oct 9 11:19 myfile lrwxrwxrwx 1 root root 6 Oct 12 17:37 temp -> myfile

其实他就是一种指向文件的指针

还有一种连接是硬链接,暂时不表

链接目录权限会是777 但是实际权限并未改变

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpgpgp.html