Piąte_21

 0    21 informačný list    michalesq
vytlačiť hrať Skontrolujte sa
 
otázka - Odpoveď -
Remove rights to write in a file for the file owner
začať sa učiť
chmod u-w myfile
Remove rights to read in a file for the file owner
začať sa učiť
chmod u-r myfile
Add rights to read and write in a file for the file owner
začať sa učiť
chmod u+rw myfile
Remove rights to read in a file for the owner, group and others
začať sa učiť
chmod -r myfile
Remove rights to write in a file for the owner, group and others
začať sa učiť
chmod -w myfile
How to add group in the system?
začať sa učiť
groupadd finance
How to list all groups?
začať sa učiť
getent group or cat /etc/group
How to change owner for the file or catalog
začať sa učiť
chown user: group file or directory
Remove rights to write in a file for the group
začať sa učiť
chmod g-w myfile
Remove rights to read in a file for the group
začať sa učiť
chmod g-r myfile
Add rights to read and write in a file for the group
začať sa učiť
chmod g+rw myfile
Remove rights to write in a file for the others
začať sa učiť
chmod o-w myfile
Remove rights to read in a file for the others
začať sa učiť
chmod o-r myfile
Add rights to read and write in a file for the others
začať sa učiť
chmod o+rw myfile
How to add user to the group
začať sa učiť
usermod -G finance user // relog to enable access to finance
How to remove execute rights on files?
začať sa učiť
chmod ug-x -R finance
How to remove execute rights on directories?
začať sa učiť
chmod ug+X -R finance
How to add rights for all: owner, group and others for the file?
začať sa učiť
chmod a+r test1
What is setgid
začať sa učiť
permission bit - gives permission as a group
What is setuid
začať sa učiť
permission bit - gives permission as a user
How to add setgid?
začať sa učiť
chmod g+s test1

Ak chcete pridať komentár, musíte byť prihlásený.