Piąte_21

 0    21 cartonașe    michalesq
printează joacă Testează-te
 
Întrebare - Răspuns -
Remove rights to write in a file for the file owner
începe să înveți
chmod u-w myfile
Remove rights to read in a file for the file owner
începe să înveți
chmod u-r myfile
Add rights to read and write in a file for the file owner
începe să înveți
chmod u+rw myfile
Remove rights to read in a file for the owner, group and others
începe să înveți
chmod -r myfile
Remove rights to write in a file for the owner, group and others
începe să înveți
chmod -w myfile
How to add group in the system?
începe să înveți
groupadd finance
How to list all groups?
începe să înveți
getent group or cat /etc/group
How to change owner for the file or catalog
începe să înveți
chown user: group file or directory
Remove rights to write in a file for the group
începe să înveți
chmod g-w myfile
Remove rights to read in a file for the group
începe să înveți
chmod g-r myfile
Add rights to read and write in a file for the group
începe să înveți
chmod g+rw myfile
Remove rights to write in a file for the others
începe să înveți
chmod o-w myfile
Remove rights to read in a file for the others
începe să înveți
chmod o-r myfile
Add rights to read and write in a file for the others
începe să înveți
chmod o+rw myfile
How to add user to the group
începe să înveți
usermod -G finance user // relog to enable access to finance
How to remove execute rights on files?
începe să înveți
chmod ug-x -R finance
How to remove execute rights on directories?
începe să înveți
chmod ug+X -R finance
How to add rights for all: owner, group and others for the file?
începe să înveți
chmod a+r test1
What is setgid
începe să înveți
permission bit - gives permission as a group
What is setuid
începe să înveți
permission bit - gives permission as a user
How to add setgid?
începe să înveți
chmod g+s test1

Trebuie să te autentifici pentru a posta un comentariu.