Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
什么是使文件只能由 root 用户删除的 chmod 设置?是否存在 chmod 设置会阻止 root 用户删除文件而不再次更改其权限/
只能由 root 用户移除
chown root:root
sudo chmod 0644
你不能让root无法删除的东西
你可以通过
chattr +i file
这需要 achattr -i file才能删除
chattr -i file