Linux如何用命令管理文件和目录的权限
发表于:2024-11-23 作者:千家信息网编辑
千家信息网最后更新 2024年11月23日,Linux如何用命令管理文件和目录的权限?针对这个问题,今天小编总结这篇有关linux文件和目录权限的文章,可供感兴趣的小伙伴们参考借鉴,希望对大家有所帮助。一、文件的权限和归属概述1、访问权限读取r
千家信息网最后更新 2024年11月23日Linux如何用命令管理文件和目录的权限
Linux如何用命令管理文件和目录的权限?针对这个问题,今天小编总结这篇有关linux文件和目录权限的文章,可供感兴趣的小伙伴们参考借鉴,希望对大家有所帮助。
一、文件的权限和归属概述
1、访问权限
读取r:允许查看文件内容、显示目录列表;
写入w:允许修改文件内容,允许在目录中新建、移动、删除文件或子目录;
- 可执行x:允许运行程序、切换目录
2、归属(所有权)
属主:拥有该文件或目录的用户账号;
- 属组:拥有该文件或目录的组账号;
3、查看文件的权限和归属
4、chmod设置文件权限
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
5、chown设置文件的归属
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
二、目录的权限和归属
1、访问权限
2、归属(所有权)
属主:拥有该目录的用户账号;
- 属组:拥有该目录的组账号;
3、chmod设置目录权限
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.cfgdrwxr-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
4、chown设置目录的归属
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.cfgdrwxr-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
1、umask的作用
控制新建的文件或目录的权限,默认权限去除umask的权限就是新建的文件或者目录的权限。
2、设置umask
umask 022
3、查看umask
umask
4、应用举例:
[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
看完这篇文章,你们学会管理文件和目录的权限的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注行业资讯频道,感谢各位的阅读。
目录
权限
文件
用量
归属
命令
应用
格式
账号
内容
管理文件
管理
所有权
更多
用户
语法
作用
兴趣
子目
子目录
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
全盘目录数据库
jsp数据库显示乱码
软件开发调研报告万能模板
云端数据库是网络数据库吗
上海虹口区定制小型服务器机柜
伊利百科技互联网大会
网页服务器怎么换
魏县坚果软件开发服务
深圳信锐网络技术支持
单机es适合线上服务器吗
软件开发技术交底表格范本
毕业以后还能用数据库吗
服务器负载太大
达讯服务器
vb6.0删除数据库连接
自考计算机网络安全需要怎么学
梁溪区网络软件开发进货价
树莓派超级服务器
专业网络技术有登记证考吗
list数据库
计算器软件开发系统组成框图
中学校园网络安全制度
数据库换行符
网络技术难还是云计算难
网络技术教育资格证
姓氏数据库芦
keep服务器什么时候修好
服务器logs文件夹是什么意思
数据库修改某行全部内容
电信的代理服务器