gpt4 book ai didi

C++、linux、无需root的关机命令

转载 作者:太空宇宙 更新时间:2023-11-04 05:55:40 26 4
gpt4 key购买 nike

是否可以制作一个仅以用户身份运行而不使用 root 权限的关闭脚本?

我找到了这段代码,但它似乎什么也没做:

#include <unistd.h>
#include <sys/reboot.h>

int main () {
sync(); // If reboot() not preceded by a sync(), data will be lost.
setuid(0); // set uid to root, the running uid must already have the
// appropriate permissions to do this.
reboot(RB_AUTOBOOT); // note, this reboots the system, it's not as
return(0); // graceful as asking the init system to reboot.
}

系统信息:

Linux hosek 4.15.0-48-generic #51-Ubuntu SMP Wed Apr 3 08:28:49 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

最佳答案

具有 systemd 和适当权限的桌面系统可以从控制台连接到 systemd:

systemctl poweroff

https://wiki.debian.org/UserShutdown

或者通过取消 c/c++ 中的 systemd api

Simple C or C++ API for controlling systemd services

关于C++、linux、无需root的关机命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58135247/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com