作为管理员,我如何创建一个可供所有用户使用的文件?
答案1
touch filename
创建它然后:
chmod 444 filename
只授予所有人读取权限,或者
chmod 644 filename
:与以前相同,只是所有者可以写入,或者
chmod 755 filename
:所有者可以读取、写入和执行该文件。用户组成员和其他人可以读取和执行该文件,但不能写入该文件,或者
chmod 777 filename
:任何人都可以读取、写入和执行该文件。
作为管理员,我如何创建一个可供所有用户使用的文件?
touch filename
创建它然后:
chmod 444 filename
只授予所有人读取权限,或者
chmod 644 filename
:与以前相同,只是所有者可以写入,或者
chmod 755 filename
:所有者可以读取、写入和执行该文件。用户组成员和其他人可以读取和执行该文件,但不能写入该文件,或者
chmod 777 filename
:任何人都可以读取、写入和执行该文件。