CHMOD 所有者/组 99 609

发布于 2024-10-03 11:26:29 字数 264 浏览 8 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

小猫一只 2024-10-10 11:26:29

这些是所有者和组 ID,因此在权限块中:

  • 第一个数字指所有者权限(uid 99)
  • 第二个数字指所有者组权限(gid 99)
  • 第三个数字指其他权限

在您的情况下,777 是读/写/为所有者、所有者组和其他人执行。

These are owner and group ids, so in the permission block :

  • first number refers to owner rights (uid 99)
  • second number refers to owner group rights (gid 99)
  • third number refers to others rights

In your case, 777 is read/write/execute for owner, owner group, and others.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文