开发者

CHMOD owner/group 99 609

开发者 https://www.devze.com 2023-01-26 02:05 出处:网络
i user APACHE with PHP. if we use F开发者_如何转开发TP program like filezilla. we will have field information about Permission (777) and Owner/Group (99 99)

i user APACHE with PHP. if we use F开发者_如何转开发TP 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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消