CHMOD 所有者/组 99 609
我使用 PHP 来使用 APACHE。 如果我们使用像filezilla这样的FTP程序。 我们将获得有关权限 (777) 和所有者/组 (99 99) 的字段信息 这样的权限
- 在*NIX中,我了解如何翻译像777 4 = Read
- 2 = Write
- 1 = eXecute
,其含义是RW = 42 = 6,
但是所有者/组= 99 99
如何翻译它?
非常感谢
i user APACHE with PHP.
if we use FTP program like filezilla.
we will have field information about Permission (777) and Owner/Group (99 99)
in *NIX i understand how to translate the Permission like 777
- 4 = Read
- 2 = Write
- 1 = eXecute
where its mean RW = 42 = 6
but what about Owner/Group = 99 99
How to translate it??
Many Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些是所有者和组 ID,因此在权限块中:
在您的情况下,777 是读/写/为所有者、所有者组和其他人执行。
These are owner and group ids, so in the permission block :
In your case, 777 is read/write/execute for owner, owner group, and others.