如何防止某人强制更改(在 vim 中)只读文件?

发布于 2024-12-19 11:12:20 字数 171 浏览 1 评论 0原文

抱歉,新因素,但我刚刚创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〃安静 2024-12-26 11:12:20

您可以使用 linux commond:

chattr +i yourfilename

这意味着您无法更改文件或删除文件。我建议你在谷歌中搜索lsattr和chattr。

you could use the linux commond :

chattr +i yourfilename

that means you couldn't change the file or delete the file . I advice you to search lsattr and chattr in google.

深海不蓝 2024-12-26 11:12:20

我的建议是将其 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文