Answers:
宇野 将您的默认登录组号更改为两个人之间的相同
username:x:500:514::/home/username:/bin/tcsh
# Where 514 is the group id.
二重奏:创建一个新的用户ID,其密码只有相关的两个人才能知道。chown
新用户ID拥有的文件。在编辑有问题的文件之前,su
请使用新的用户ID。
三重奏:
cp $EDITOR to $HOME; \# in this example pico
chmod g+s $HOME/pico;
chgrp RELEVANTGROUP $HOME/pico;
Quattro:
sudo chgrp RELEVANTGROUP some/path/to/file \# may require root
Cinco:创建一些Google帐户,然后在Google文档中同时编辑内容。(观察其他人在哪里打字很干净)。指出要更改“具有链接的任何人”在Google文档中的共享权限
Hexo:将文件分成两部分,每个编辑器只能工作一半。
这是一篇有关Sticky-Bit和其他高级权限设置的好文章:https : //notes-from-a-dev.blogspot.com/2011/03/modes-and-permission-sticky-bit.html
setgid
位,而不是粘性位。来自维基百科:Setting the setgid permission on a directory (chmod g+s) causes new files and subdirectories created within it to inherit its group ID, rather than the primary group ID of the user who created the file
。激活目录上的粘滞位只能确保只有目录文件的所有者,目录所有者或根目录才能修改目录文件。