runxinzhi.com
首页
百度搜索
Linux课程---10、权限管理(权限有哪几种)
Linux课程---10、权限管理(权限有哪几种)
一、总结
一句话总结:
r 读
w 写
x 执行
1、drwxr-x--- 2 root root 4096 Jan 20 19:39 mnt 中表示权限的字段是什么意思?
rwx root对mnt目录具有读、写和执行的权限
r-x root组内其他用户对mnt目录具有读和执行权限
--- other其他所有用户对mnt目录没有任何权限
2、root用户和root组的关系?
root组里面不只有root用户,还有其它用户
3、切换到一个目录里面,需要哪些权限?
读和执行
4、linux系统中用户有哪几种?
所有者 user u
所属组 group g
其他用户 other o
u+g+o=a
5、目录的rwx分别代表什么意思?
r 查看目录里面的文件(4)
w 在目录里创建或删除文件(2)
x 切换进目录(1)
6、文件的rwx分别代表什么意思?
r 查看文件内容
w 在文件里写内容
x 执行该文件(文件不是普通文件,是程序或脚本)
7、drwxr-x--- 2 root root 4096 Jan 20 19:39 mnt,需要让user1对mnt目录具有rwx的权限?
chmod o+r,o+w,o+x mnt
8、让所有用户对my.sh都拥有x权限?
chmod a+x my.sh
9、让user1对mnt目录具有r权限,让user2对mnt目录具有rx的权限,让user3对mnt目录具有rw的权限,让user4对mnt目录具有rwx的权限(linux中的权限组只有3个,而这里需要对文件根据用户来区分对象)?
set f(file) acl(access control list)
比如:setfacl -m u:user1:r mnt
10、acl权限注意?
查看mnt拥有的acl权限:getfacl -m mnt
11、sudo权限是什么?
命令的执行权限:比如sbin下的命令
12、acl权限是什么?
(access control list)(细微的权限把控)
13、sudo权限(命令的执行权限:比如sbin下的命令)使用注意?
设置:visudo:%user1 localhost=/usr/sbin/useradd,/usr/sbin/userdel
使用:sudo /usr/sbin/useradd user5
二、内容在总结中
相关阅读:
[LeetCode] 852. Peak Index in a Mountain Array
[LeetCode] 221. Maximal Square
[LeetCode] 260. Single Number III
[LeetCode] 532. K-diff Pairs in an Array
[LeetCode] 1417. Reformat The String
[LeetCode] 621. Task Scheduler
[LeetCode] 454. 4Sum II
[LeetCode] 18. 4Sum
[LeetCode] 369. Plus One Linked List
[LeetCode] 380. Insert Delete GetRandom O(1)
原文地址:https://www.cnblogs.com/Renyi-Fan/p/10883149.html
最新文章
UPC-探险(线段树+二分)
Codeforces 1324 D-Pair of Topics(思维+二分 || 双指针)
HDU-敌兵布阵(线段树 || 树状数组)
C++ 构造函数+析构函数+函数参数的传递
LDUOJ 时间锁链 (状压+线段树 )
UPC 排队(线段树||RMQ||树状数组||分块处理)
第七届蓝桥杯省赛 重现 解题报告
CodeForces
Codeforces-Adding Powers(进制问题+思维)
HDU-致命武器(线段树)
热门文章
[LeetCode] 819. Most Common Word
[LeetCode] 156. Binary Tree Upside Down
[LeetCode] 93. Restore IP Addresses
[LeetCode] 92. Reverse Linked List II
[LeetCode] 680. Valid Palindrome II
[LeetCode] 1430. Check If a String Is a Valid Sequence from Root to Leaves Path in a Binary Tree
[LeetCode] 371. Sum of Two Integers
[LeetCode] 1429. First Unique Number
[LeetCode] 1095. Find in Mountain Array
[LeetCode] 704. Binary Search
Copyright © 2020-2023
润新知