大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
属主:拥有该文件或目录的用户账号;
- 属组:拥有该文件或目录的组账号;
chmod命令的基本语法格式如下:
应用举例:
[root@centos01 ~]# touch 1.txt
[root@centos01 ~]# ll
总用量 8
-rw-r--r-- 1 root root 0 1月 11 22:27 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
[root@centos01 ~]# chmod u+x ./1.txt
[root@centos01 ~]# ll
总用量 8
-rwxr--r-- 1 root root 0 1月 11 22:27 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
[root@centos01 ~]# chmod u-x,g+x,o+w 1.txt
[root@centos01 ~]# ll
总用量 8
-rw-r-xrw- 1 root root 0 1月 11 22:27 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
[root@centos01 ~]# chmod 755 1.txt
[root@centos01 ~]# ll
总用量 8
-rwxr-xr-x 1 root root 0 1月 17 02:36 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
chown命令的基本语法格式如下:
应用举例:
[root@centos01 ~]# chown bob 1.txt
[root@centos01 ~]# ll
总用量 8
-rwxr-xr-x 1 bob root 0 1月 17 02:36 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
[root@centos01 ~]# chown :benet 1.txt
[root@centos01 ~]# ll
总用量 8
-rwxr-xr-x 1 bob benet 0 1月 17 02:36 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
[root@centos01 ~]# chown bob:benet 1.txt
[root@centos01 ~]# ll
总用量 8
-rwxr-xr-x 1 bob benet 0 1月 17 02:36 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
属主:拥有该目录的用户账号;
chmod命令设置目录权限的基本格式如下:
应用举例:
[root@centos01 ~]# chmod -R 755 benet/
[root@centos01 ~]# ll
总用量 8
-rw-r-xrw- 1 root root 0 1月 11 22:27 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
drwxr-xr-x 3 root root 18 1月 11 22:39 benet
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
chown命令设置目录归属的基本格式如下:
应用举例:
[root@centos01 ~]# chown -R bob:benet benet/
[root@centos01 ~]# ll
总用量 8
-rw-r-xrw- 1 root root 0 1月 11 22:27 1.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
drwxr-xr-x 3 bob benet 18 1月 11 22:39 benet
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
控制新建的文件或目录的权限,默认权限去除umask的权限就是新建的文件或者目录的权限。
umask 022
umask
[root@centos01 ~]# umask
0022
[root@centos01 ~]# umask 000
[root@centos01 ~]# umask
0000
[root@centos01 ~]# touch 2.txt
[root@centos01 ~]# ll
总用量 8
-rwxr-xr-x 1 bob benet 0 1月 17 03:48 1.txt
-rw-rw-rw- 1 root root 0 1月 17 03:48 2.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
[root@centos01 ~]# umask 022
[root@centos01 ~]# umask
0022
[root@centos01 ~]# touch 3.txt
[root@centos01 ~]# ll
总用量 8
-rwxr-xr-x 1 bob benet 0 1月 17 03:48 1.txt
-rw-rw-rw- 1 root root 0 1月 17 03:48 2.txt
-rw-r--r-- 1 root root 0 1月 17 03:49 3.txt
-rw-------. 1 root root 1572 10月 23 22:37 anaconda-ks.cfg
-rw-r--r--. 1 root root 1603 10月 23 23:36 initial-setup-ks.cfg
———————— 本文至此结束,感谢阅读 ————————