• ⽂件权限管理(上)


    ⼀、Linux⽤户权限解析

           我们 linux 服务器上有严格的权限等级,如果权限过⾼导致误操作会增加服务器的⻛险。所以对于了解linux 系统中的各种权限及要给⽤户,服务等分配合理的权限⼗分重要。

    ⼆、ugo权限讲解

    1. u user
    2. g group
    3. o other
    4. --- --- ---
    5. u g o
    6. rwx r-x --x
    7. r read
    8. w write
    9. x execute
    10. [root@qfedu.com ~]# chmod 权限 ⽂件
    11. [root@qfedu.com ~]# chmod u-r-w a.txt
    12. [root@qfedu.com ~]# chmod u+r a.txt
    13. [root@qfedu.com ~]# chmod g+w a.txt
    14. [root@qfedu.com ~]# chmod o+x a.txt
    15. [root@qfedu.com ~]# chmod u+w,g-w,o+w a.txt
    16. [root@qfedu.com ~]# chmod a-r a.txt a表示ugo3个位置
    17. [root@qfedu.com ~]# chmod -r a.txt (建议少⽤)
    18. 4=r 2=w 1=x
    19. rwx 4+2+1=7
    20. r-- 4
    21. r-x 4+1=5
    22. 745
    23. [tom@qfedu.com ~]$ chmod 604 a.txt
    24. [tom@qfedu.com ~]$ ll a.txt
    25. -rw----r-- 1 tom tom 44 Nov 25 11:43 a.txt

    三、⽂件所有者/所属组讲解

    1. [root@qfedu.com ~]#chown ⽤户 ⽂件
    2. [root@qfedu.com ~]#chown user2 a.txt
    3. [root@qfedu.com ~]#chown {.|:}组 ⽂件
    4. [root@qfedu.com ~]#chown .grp2 a.txt
    5. [root@qfedu.com ~]#chown ⽤户.组 ⽂件
    6. [root@qfedu.com ~]#chown user3:grp3 a.txt
    7. -R recoursive 递归修改,修改⽬录的时候连带⽬录的所有⼦⽂件⼀起修改

    四、linux⽂件类型讲解

    linux⾥⾯ ⼀切皆⽂件

    查看⽂件类型

    1. [root@qfedu.com ~]#ls -l ⽂件名
    2. -rwxrwxrwx. 1 root root 819 1118 10:14 1考试.txt

    ⽂件类型种类

    1. - 普通⽂件 f
    2. d ⽬录
    3. b 块设备 /dev/sda /dev/sda1 /dev/sr0
    4. c 字符设备 /dev/pts/0 /dev/tty0
    5. #tty //查看字符设备名称
    6. l symbolic link 符号链接 软链接(快捷⽅式)
    7. s socket 套接字 ⽹络进程间通信的⼀种⽅式
    8. p pipe 管道 本地进程间通信的⼀种⽅式

    ⽂件数据类型

    1. [root@qfedu.com ~]#file ⽂件
    2. ⽐如:
    3. [root@qfedu.com ~]# file VNC-5.2.0-Linux-x64-RPM.tar.gz
    4. VNC-5.2.0-Linux-x64-RPM.tar.gz: gzip compressed data,
    5. from Unix, last modified: Tue Jun 3 17:07:35 2018

    查看命令类型

    ⽐如:

    1. [root@qfedu.com ~]# type ls
    2. ls 是 `ls --color=auto' 的别名

    -------------------------------------未完待续,请看下篇------------------------------

  • 相关阅读:
    IDEA使用Maven
    Zookeeper
    linux-进程-execl族函数
    excel函数从0到掌握
    [开源内卷] .NET 定时任务 -- FreeScheduler 支持 cron、持久化、可变定时设置
    大数据培训课程之fold(num)(func)案例
    Oracle Linux 9.2 发布 - Oracle 提供支持 RHEL 兼容发行版
    Express 4 快速入门 - 基本路由
    Java设计模式之代表模式
    1.4、计算机网络的定义和分类
  • 原文地址:https://blog.csdn.net/qq_61861243/article/details/138093115