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.
Linux 用户空间 API 中是否有任何接口可以让我执行相当于
chattr +i myfile chattr -i myfile
如果可能的话,我需要在我的应用程序中执行此操作,但我无法在网上找到任何建议如何从 Linux API 执行此操作的内容。我原以为会有某种ioctl可用的电话来执行此操作,但我根本找不到有关它的任何详细信息。
ioctl
看一下:
如果你strace在 chattr 上做一些事情,你可能会发现它调用的东西看起来像:
strace
ioctl(fd, EXT2_IOC_SETFLAGS, flags)
(看看这个线程)