LaunchDaemons 文件未运行?

发布于 2024-09-26 03:50:05 字数 344 浏览 4 评论 0原文

我正在创建一个将由 Cydia 安装的 iPhone 应用程序,该应用程序包含一个 LaunchDaemons plist 和一个 unix 可执行文件。 unix 可执行文件是从 LaunchDaemons 的 plist 中调用的。

当我通过 SSH 手动将文件传输到 iPhone 时,效果很好,并且 plist 文件具有 root 所有者和 wheel 组,但是当从 Cydia 安装程序复制文件时,unix可执行文件不是从 launchDaemon 的 plist 调用的,并且 plist 文件具有 mobile 组和 mobile 所有者。

I am creating an iPhone app that will installed by Cydia, and that app includes a LaunchDaemons plist, and a unix executable file. The unix executable file is called from the LaunchDaemons's plist.

When I manually transfer files to an iPhone via SSH, that works fine and the plist file has root owner and wheel group, but when files are copied from Cydia installer then the unix executable file is not called from the launchDaemon's plist and the plist file has mobile group and mobile owner.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无敌元气妹 2024-10-03 03:50:06

在上传到存储库之前,您必须 chown 您的 .app 文件并启动守护程序文件。

示例:

chown -R root:wheel Test.app

然后

chown root:wheel com.foobar.Test

dpkg -b Test,您应该通过 Cydia 获得正确的所有权。

You have to chown your .app files and launch daemon file BEFORE uploading to your repository.

example:

chown -R root:wheel Test.app

and

chown root:wheel com.foobar.Test

Then dpkg -b Test and you should get the correct ownership via Cydia.

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