Szóste_21

 0    21 cartonașe    michalesq
printează joacă Testează-te
 
Întrebare - Răspuns -
How to add setuid?
începe să înveți
chmod u+s test1
How to add setgid with octo notation?
începe să înveți
chmod 2500 test1
How to add setuid with octo notation?
începe să înveți
chmod 4500 test1
How to secure file from being removed adding sticky bit?
începe să înveți
chmod +t test1
How to secure file from being removed adding sticky bit with octo notation?
începe să înveți
chmod 1777 test1
How to display umaks for the system?
începe să înveți
umask
Mask the write permissions for the "other" users, then touch file2
începe să înveți
umask 002
Mask write access for group members and the write for "other" permissions
începe să înveți
umask 022
Mask read and write permissions for the owner of a file
începe să înveți
umask 600
Mask read/write access for group for non-privileged users and other permissions and make these changes persistent
începe să înveți
vim /etc/bashrc and vim /etc/profile // change first umask to 066 (not privileged users)
What does it mean: if [$UID -gt 199 ] && ["`id -gn`" = "`id -un`" ]
începe să înveți
If the user id > 199 and id for the user and group is equal then user is not privileged, else it is priviledged
How to display manual of the application?
începe să înveți
man passwd
How to display 5th page of the manual?
începe să înveți
man 5 passwd
How to look for the "word" in the documentation
începe să înveți
apropos word
Loading manuals to the cache
începe să înveți
mandb
directories contain information about documentation
începe să înveți
/usr/share/doc
locate passwd
începe să înveți
search everything in the system for passwd command
Update information about the program
începe să înveți
updatedb
How to display full absolute path for the specific program
începe să înveți
which passwd
How to look on manual page descriptions for the program
începe să înveți
whatis passwd
How to show everything about the program
începe să înveți
whereis passwd

Trebuie să te autentifici pentru a posta un comentariu.