
Important Linux features 207
DONE
INDEX
INDEX
make fila writable for all users
-rw-rw-rw- user group 102 Apr 10 12.20 fila
• chmod ug+x fila
make fila executable for the owner and the group
-rwxrwxrw- user group 102 Apr 10 12.20 fila
• chmod o-w fila
make fila not writable for others
-rwxrwxr-- user group 102 Apr 10 12.20 fila
• chmod -R +w dira
make the directory tree dira, including all files and sub directories, writable
for all users
2. using the numerical representation: chmod xxx filename
• chmod 444 fila
make fila readable for all users
-r--r--r-- user group 102 Apr 10 12.20 fila
• chmod 222 fila
make fila writable for all users
--w--w--w- user group 102 Apr 10 12.20 fila
• chmod 640 fila
make fila read/write for the owner, read for the group
-rw-r----- user group 102 Apr 10 12.20 fila
• chmod 751 fila
Commenti su questo manuale