Piąte_21

 0    21 schede    michalesq
Stampa Gioca Testa il tuo livello
 
Domanda - Risposta -
Remove rights to write in a file for the file owner
inizia ad imparare
chmod u-w myfile
Remove rights to read in a file for the file owner
inizia ad imparare
chmod u-r myfile
Add rights to read and write in a file for the file owner
inizia ad imparare
chmod u+rw myfile
Remove rights to read in a file for the owner, group and others
inizia ad imparare
chmod -r myfile
Remove rights to write in a file for the owner, group and others
inizia ad imparare
chmod -w myfile
How to add group in the system?
inizia ad imparare
groupadd finance
How to list all groups?
inizia ad imparare
getent group or cat /etc/group
How to change owner for the file or catalog
inizia ad imparare
chown user: group file or directory
Remove rights to write in a file for the group
inizia ad imparare
chmod g-w myfile
Remove rights to read in a file for the group
inizia ad imparare
chmod g-r myfile
Add rights to read and write in a file for the group
inizia ad imparare
chmod g+rw myfile
Remove rights to write in a file for the others
inizia ad imparare
chmod o-w myfile
Remove rights to read in a file for the others
inizia ad imparare
chmod o-r myfile
Add rights to read and write in a file for the others
inizia ad imparare
chmod o+rw myfile
How to add user to the group
inizia ad imparare
usermod -G finance user // relog to enable access to finance
How to remove execute rights on files?
inizia ad imparare
chmod ug-x -R finance
How to remove execute rights on directories?
inizia ad imparare
chmod ug+X -R finance
How to add rights for all: owner, group and others for the file?
inizia ad imparare
chmod a+r test1
What is setgid
inizia ad imparare
permission bit - gives permission as a group
What is setuid
inizia ad imparare
permission bit - gives permission as a user
How to add setgid?
inizia ad imparare
chmod g+s test1

Devi essere accedere per pubblicare un commento.