构建仅支持 Java 的自定义 BSD 版本

发布于 2024-07-19 05:23:22 字数 204 浏览 7 评论 0原文

我应该使用什么流程来实现构建能够运行 Java VM 但不具备任何其他功能的 FreeBSD 版本的目标,包括但不限于:

  1. 运行除 Java VM 之外的任何进程
  2. 禁用任何/所有 shell 访问
  3. 当 Java VM 退出时,操作系统关闭

我需要支持 JDK 1.6,因此 SANOS 等方法不起作用。

What is the process I should use to accomplish the goal of building a version of FreeBSD that is capable of running a Java VM but not capable of any other functionality including, but not limited to:

  1. Running any process other than the Java VM
  2. Disabling any/all shell access
  3. When the Java VM exits, the OS shuts down

I need to support JDK 1.6, so approaches such as SANOS do not work.

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

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

发布评论

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

评论(2

明明#如月 2024-07-26 05:23:22
  1. 配置init脚本以在用户身份验证后运行JVM。
  2. 通常在用户身份验证之后,删除生成 shell 的初始化脚本之一中的行。
  3. 应该有一个 Java 进程的监听器,如果没有找到,则触发“init 0”或“shutdown”或“poweroff”
  1. Configure the init script to run the JVM after user authentication.
  2. Remove the line in one of the init scripts that spawns the shell, typically after user authentication.
  3. There should be a listener for Java processes, if it doesn't find any, fire "init 0" or "shutdown" or "poweroff"
凉城凉梦凉人心 2024-07-26 05:23:22

Sanos 操作系统内核正是一个这样做的项目,只不过它使用 Windows JVM 而不是 FreeBSD JVM。 Sanos 只提供 JVM 所需的功能,除此之外别无其他。

http://www.jbox.dk/sanos/

The Sanos Operating System Kernel is a project doing exactly that, except that it uses a Windows JVM instead of a FreeBSD JVM. Only the functionality needed by the JVM is provided by Sanos, nothing else.

http://www.jbox.dk/sanos/

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