Piąte_21

 0    21 词汇卡    michalesq
打印 检查自己
 
问题 - 答案 -
Remove rights to write in a file for the file owner
开始学习
chmod u-w myfile
Remove rights to read in a file for the file owner
开始学习
chmod u-r myfile
Add rights to read and write in a file for the file owner
开始学习
chmod u+rw myfile
Remove rights to read in a file for the owner, group and others
开始学习
chmod -r myfile
Remove rights to write in a file for the owner, group and others
开始学习
chmod -w myfile
How to add group in the system?
开始学习
groupadd finance
How to list all groups?
开始学习
getent group or cat /etc/group
How to change owner for the file or catalog
开始学习
chown user: group file or directory
Remove rights to write in a file for the group
开始学习
chmod g-w myfile
Remove rights to read in a file for the group
开始学习
chmod g-r myfile
Add rights to read and write in a file for the group
开始学习
chmod g+rw myfile
Remove rights to write in a file for the others
开始学习
chmod o-w myfile
Remove rights to read in a file for the others
开始学习
chmod o-r myfile
Add rights to read and write in a file for the others
开始学习
chmod o+rw myfile
How to add user to the group
开始学习
usermod -G finance user // relog to enable access to finance
How to remove execute rights on files?
开始学习
chmod ug-x -R finance
How to remove execute rights on directories?
开始学习
chmod ug+X -R finance
How to add rights for all: owner, group and others for the file?
开始学习
chmod a+r test1
What is setgid
开始学习
permission bit - gives permission as a group
What is setuid
开始学习
permission bit - gives permission as a user
How to add setgid?
开始学习
chmod g+s test1

您必须登录才能发表评论。