linux - `------rwx`是什么意思

标签 linux

<分区>

我知道最后三个字符表示每个人都有 R/W/X 的权限。大家是谁?每个人都包含用户和组成员吗?如果不是,为什么我们要这样的模式?谁能给我一个我需要的例子?

最佳答案

   + ------------------ User Permissions Read
   | + ---------------- User Permissions Write
   | | + -------------- User Permissions Execute
   | | | + ------------ Group Permissions Read
   | | | | + ---------- Group Permissions Write
   | | | | | + -------- Group Permissions Execute
   | | | | | | + ------ Other Permissions Read
   | | | | | | | + ---- Other Permissions Write
   | | | | | | | | + -- Other Permissions Execute
   | | | | | | | | |
   r w x r w x r w x

   User Permissions: The user that own the file.
   Group Permissions: The group the file belongs to.
   Other Permissions: The other users i.e. everyone else.

关于linux - `------rwx`是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30092802/

相关文章:

linux - "echo || true"有什么用?

linux - 在 unix 或 shell 中将新行打印为字符串文字

linux + ssh 限制 + ssh 同时从多台机器到一台机器

c++ - 尝试解决 "out of scope"编译错误 : CodeBlocks, Linux Fedora

linux - ELF 文件格式如何定义堆栈?

linux - 如何只获取文件的行数

r - 如何在 CentOS 上升级 R

node.js - 在 Manjaro linux 上安装 node js 和 npm 的问题

linux - 使用 bash 脚本检查目录中的文件?这段代码有什么问题?

Python - 与另一个脚本共享 getpass() 输入?