Piąte_21

 0    21 fiche    michalesq
Imprimir jogar verifique-se
 
questão - resposta -
Remove rights to write in a file for the file owner
começar a aprender
chmod u-w myfile
Remove rights to read in a file for the file owner
começar a aprender
chmod u-r myfile
Add rights to read and write in a file for the file owner
começar a aprender
chmod u+rw myfile
Remove rights to read in a file for the owner, group and others
começar a aprender
chmod -r myfile
Remove rights to write in a file for the owner, group and others
começar a aprender
chmod -w myfile
How to add group in the system?
começar a aprender
groupadd finance
How to list all groups?
começar a aprender
getent group or cat /etc/group
How to change owner for the file or catalog
começar a aprender
chown user: group file or directory
Remove rights to write in a file for the group
começar a aprender
chmod g-w myfile
Remove rights to read in a file for the group
começar a aprender
chmod g-r myfile
Add rights to read and write in a file for the group
começar a aprender
chmod g+rw myfile
Remove rights to write in a file for the others
começar a aprender
chmod o-w myfile
Remove rights to read in a file for the others
começar a aprender
chmod o-r myfile
Add rights to read and write in a file for the others
começar a aprender
chmod o+rw myfile
How to add user to the group
começar a aprender
usermod -G finance user // relog to enable access to finance
How to remove execute rights on files?
começar a aprender
chmod ug-x -R finance
How to remove execute rights on directories?
começar a aprender
chmod ug+X -R finance
How to add rights for all: owner, group and others for the file?
começar a aprender
chmod a+r test1
What is setgid
começar a aprender
permission bit - gives permission as a group
What is setuid
começar a aprender
permission bit - gives permission as a user
How to add setgid?
começar a aprender
chmod g+s test1

Você deve entrar para postar um comentário.