需要澄清权限代码

发布于 2024-10-27 08:26:31 字数 97 浏览 2 评论 0原文

我正在阅读一些文档,其中开发人员说某个文件需要设置为 +rx 模式,因为该文件正在被外部服务访问。

这指的是什么 CHMOD 代码?第777章

谢谢

I was reading some documentation where a developer is saying that a certain file needs to be set to +rx mode because the file is being accessed by outside services

What CHMOD code does this refer to? 777?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

洒一地阳光 2024-11-03 08:26:31

+rx 表示:添加读取和执行权限(555)减去 umask 位到默认权限。

通常,umask 为 022,默认权限为 644,因此结果将为 755。

计算0644 | (0555&~0022):

+rx                : 555 -> 101 101 101
Umask              : 022 -> 000 010 010 &~
                   ======================
Add these perms    : 555 -> 101 101 101
Default permissions: 644 -> 110 100 100 |
                   ======================
Result             : 755 -> 111 101 101

+rx means: Add read and execute permissions (555) minus the umask bits to the default permissions.

Usually, the umask is 022 and the default permissions 644, so the result would be 755.

The calculation 0644 | (0555 & ~0022):

+rx                : 555 -> 101 101 101
Umask              : 022 -> 000 010 010 &~
                   ======================
Add these perms    : 555 -> 101 101 101
Default permissions: 644 -> 110 100 100 |
                   ======================
Result             : 755 -> 111 101 101
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文