Владение группы пользователей содержания каталога Controlling UNIX

вершина df-h и ВСЕГДА проверяет/var/log, чтобы удостовериться, что раздел не заполнился. Это вызвало общее количество, растапливают на мне несколько раз.

1
задан 10 July 2009 в 00:53
3 ответа

Можно сделать это для GID:

chgrp users /path/to/directory
chmod g+s /path/to/directory

Вы не можете сделать этого для UID. Непосредственно.

Вы могли записать запись крона, которая каждый так часто выполняет команды:

chown -R user:group /path/to/directory
chmod -R 644 /path/to/directory

(удостоверьтесь, что Вы монтируете файловую систему, что/path/to/directory находится на nosuid для предотвращения состояния состязания, где кто-то бросает оболочку setuid в каталог),

6
ответ дан 3 December 2019 в 18:21
  • 1
    пользователи chgrp/path/to/directory chmod g+s/path/to/directory That' s все, что я искал, это булочки для Вас –  Jake McGraw 10 July 2009 в 01:01
  • 2
    Другая вещь, которая помогает, является Вами, устанавливает umask правильно для пользователей –  Zoredache 10 July 2009 в 01:03

chown user:group file ?

0
ответ дан 3 December 2019 в 18:21

Я вынужден сказать что, но прочитайте руководство. От chmod(1):

       Modes may be absolute or symbolic.  An absolute mode is an octal number
       constructed from the sum of one or more of the following values:

       4000    (the setuid bit).  Executable files with this bit set will
               run with effective uid set to the uid of the file owner.
               Directories with this bit set will force all files and sub-
               directories created in them to be owned by the directory
               owner and not by the uid of the creating process, if the
               underlying file system supports this feature: see chmod(2)
               and the suiddir option to mount(8).
       2000    (the setgid bit).  Executable files with this bit set will
               run with effective gid set to the gid of the file owner.
       1000    (the sticky bit).  See chmod(2) and sticky(8).
       0400    Allow read by owner.
       0200    Allow write by owner.
       0100    For files, allow execution by owner.  For directories,
               allow the owner to search in the directory.
       0040    Allow read by group members.
       0020    Allow write by group members.
       0010    For files, allow execution by group members.  For directo-
               ries, allow group members to search in the directory.
       0004    Allow read by others.
       0002    Allow write by others.
       0001    For files, allow execution by others.  For directories
               allow others to search in the directory.
-2
ответ дан 3 December 2019 в 18:21

Теги

Похожие вопросы