linux删除一个root权限管理,linux – 允许非root用户删除缓存

我在需要时做的是我编写了一个小程序,将编译文件的所有者更改为root,然后设置setuid位.

这是源代码:

#include

#include

#include

#include

extern void sync(void);

int main(void) {

if (geteuid() != 0) {

fprintf(stderr, "flush-cache: Not root\n");

exit(EXIT_FAILURE);

}

printf("Flushing page cache, dentries and inodes...\n");

// First: the traditional three sync calls. Perhaps not needed?

// For security reasons, system("sync") is not a good idea.

sync();

sync();

sync();

FILE* f;

f = fopen("/proc/sys/vm/drop_caches", "w");

if (f == NULL) {

fprintf(stderr, "flush-cache: Couldn't open /proc/sys/vm/drop_caches\n");

exit(EXIT_FAILURE);

}

if (fprintf(f, "3\n") != 2) {

fprintf(stderr, "flush-cache: Couldn't write 3 to /proc/sys/vm/drop_caches\n");

exit(EXIT_FAILURE);

}

fclose(f);

printf("Done flushing.\n");

return 0;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值