如何防止某人强制更改(在 vim 中)只读文件?
抱歉,新因素,但我刚刚创建了一个 hello world 文件,然后对其执行了 chmod 444 。我想确保没有人可以编辑其内容。
但是如果你使用 w!在 vim 中,然后您可以覆盖这些 chmod 权限并向该文件写入内容。
是否有“!”?优先于 chmod 吗?如何防止有人强制更改只读文件?
Sorry for the newb factor but I just created a hello world file and then did chmod 444 on it. I want to make sure nobody can edit its contents.
However if you use w! in vim, then you can override those chmod permissions and write something to that file.
Does the "!" have precedence over chmod? How can I prevent someone from forcing a change to a read only file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 linux commond:
这意味着您无法更改文件或删除文件。我建议你在谷歌中搜索lsattr和chattr。
you could use the linux commond :
that means you couldn't change the file or delete the file . I advice you to search lsattr and chattr in google.
我的建议是将其 chown 给他们无法使用的用户。这样他们将无法在不更改用户的情况下强制执行此操作。
My advice would be to chown it to a user they cannot su to. That way they will not be able to force it without changing user.