Как установить общий доступ к /var/www ?
How can I chmod 777 all subfolders of /var/www?
Как установить общий доступ к /var/www ?
Files and directories in Unix may have three types of permissions: read (r), write (w), and execute (x). Each permission may be on or off for each of three categories of users: the file or directory owner; other people in the same group as the owner; and all others. To change the mode of a file, use the chmod command. The general form is chmod X@Y file1 file2 …
Файлы и каталоги в Unix могут иметь три типа разрешений: чтение (r), запись (w) и выполнение (x). Каждое разрешение может быть включено или выключено для каждой из трех категорий пользователей: владелец файла или каталога; другие люди в той же группе, что и владелец; и все остальные. Чтобы изменить режим работы файла, используйте команду chmod. Общая форма-chmod X@Y file1 file2 …
| |
u = user that owns the file
g = group that owns the file
o = other (everyone else)
a = all (everybody)
r = read aces to the file
w = write access
x = execute (run) access
Источник: How can I chmod 777 all subfolders of /var/www? (askubuntu.com)