前端之家收集整理的这篇文章主要介绍了
“S”linux文件权限是什么意思,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我见过各种
Linux文件权限,如rwx和rws,但我从未见过权限集rwS.有人可以向我解释国会大厦’S’代表什么?
大写S表示
文件具有setuid位设置但不可执行.
[root@host:/]$touch file
[root@host:/]$chmod 4755 file
[root@host:/]$ls -l file
-rwsr-xr-x 1 root root 0 Jul 25 15:05 file
[root@host:/]$chmod -x file
[root@host:/]$ls -l file
-rwSr--r-- 1 root root 0 Jul 25 15:05 file
原文链接:https://www.f2er.com/linux/401193.html