Piąte_21

 0    21 flashcards    michalesq
Baskı oynamak kendini kontrol et
 
soru - cevap -
Remove rights to write in a file for the file owner
öğrenmeye başla
chmod u-w myfile
Remove rights to read in a file for the file owner
öğrenmeye başla
chmod u-r myfile
Add rights to read and write in a file for the file owner
öğrenmeye başla
chmod u+rw myfile
Remove rights to read in a file for the owner, group and others
öğrenmeye başla
chmod -r myfile
Remove rights to write in a file for the owner, group and others
öğrenmeye başla
chmod -w myfile
How to add group in the system?
öğrenmeye başla
groupadd finance
How to list all groups?
öğrenmeye başla
getent group or cat /etc/group
How to change owner for the file or catalog
öğrenmeye başla
chown user: group file or directory
Remove rights to write in a file for the group
öğrenmeye başla
chmod g-w myfile
Remove rights to read in a file for the group
öğrenmeye başla
chmod g-r myfile
Add rights to read and write in a file for the group
öğrenmeye başla
chmod g+rw myfile
Remove rights to write in a file for the others
öğrenmeye başla
chmod o-w myfile
Remove rights to read in a file for the others
öğrenmeye başla
chmod o-r myfile
Add rights to read and write in a file for the others
öğrenmeye başla
chmod o+rw myfile
How to add user to the group
öğrenmeye başla
usermod -G finance user // relog to enable access to finance
How to remove execute rights on files?
öğrenmeye başla
chmod ug-x -R finance
How to remove execute rights on directories?
öğrenmeye başla
chmod ug+X -R finance
How to add rights for all: owner, group and others for the file?
öğrenmeye başla
chmod a+r test1
What is setgid
öğrenmeye başla
permission bit - gives permission as a group
What is setuid
öğrenmeye başla
permission bit - gives permission as a user
How to add setgid?
öğrenmeye başla
chmod g+s test1

Yorum yapmak için giriş yapmalısınız.