在shell脚本中静默安装JDK1.6

发布于 2024-12-17 07:24:59 字数 129 浏览 0 评论 0原文

我正在尝试在使用 shell 命令的 kickstart 的 %post 部分中的 RHEL5.5 系统上安装 JDK1.6。尽管您需要接受用户协议并接受它将安装一些 rpm 以及不安装的内容。有没有简单的方法可以做到这一点?或者根本有可能吗?

I'm trying to install JDK1.6 on a RHEL5.5 system in the %post section of the kickstart that uses shell commands. Though you need to accept the user agreement and accept that it will install some rpms and what not. Is there an easy way to do this? Or possible at all?

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

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

发布评论

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

评论(1

清引 2024-12-24 07:24:59

这可以解决问题:(

export MORE=10000
sh thejdkbin.sh >/dev/null <<EOF
yes
EOF

但是顺便问一下,为什么要在 %post 部分安装 JDK?)

This does the trick:

export MORE=10000
sh thejdkbin.sh >/dev/null <<EOF
yes
EOF

(but by the way, why do you install a JDK in the %post section?)

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