1.权限
(1)755-》对应什么权限:rwxr-xr-x.
(2)660-》对应什么权限:rw-rw----.
(3)644-》对应什么权限:rw-r--r--.
(4)6755-》对应什么权限:rwsr-sr-x.
(5)1664-》对应什么权限:rw-rw-r-t.
2.赋权
创建文件,并赋予权限611(两种方式,一种guoa,一种nnn);
[root@localhost tt]# touch file.txt
//第一种方式
[root@localhost tt]# chmod 611 file.txt
[root@localhost tt]# ll
total 0
-rw---x--x. 1 root root 0 Jun 20 16:49 file.txt
[root@localhost tt]#
//第二种方式
[root@localhost tt]# touch file2.txt
[root@localhost tt]# chmod g-r+x,o-r+x file2.txt
[root@localhost tt]# ll
total 0
-rw---x--x. 1 root root 0 Jun 20 16:51 file2.txt
创建目录,并赋予权限755(两种方式,一种guoa,一种nnn);
[root@localhost tt]# mkdir tt
//第一种方式
[root@localhost tt]# chmod 755 tt
[root@localhost tt]# ll
total 0
drwxr-xr-x. 2 root root 6 Jun 20 16:53 tt
//第二种方式
[root@localhost tt]# chmod u+r+w+x,g+r+x-w,o-w+r+x tt
[root@localhost tt]# ll -d tt
drwxr-xr-x. 2 root root 6 Jun 20 16:54 tt
创建文件,并将文件的属主和属组修改为其他用户;
//先创建一个其他用户tsetuser1
[root@localhost ~]# useradd testuser1
[root@localhost ~]#
//创建文件并查看
[root@localhost ~]# touch testuser
[root@localhost ~]# ll -d testuser
-rw-r--r--. 1 root root 0 Jun 20 16:58 testuser
//改变属主和所属组
[root@localhost ~]# chown testuser1:testuser1 testuser
[root@localhost ~]# ll -d testuser
-rw-r--r--. 1 testuser1 testuser1 0 Jun 20 16:58 testuser
[root@localhost ~]#