- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试让 Headless Installer 工作(从远程 Linux 的命令行安装)
但每次我运行命令时,我都会立即得到这个
java -jar install.jar -console
[ Console Installation done ]
我必须做什么才能让安装程序使用 -console 命令,我宁愿让它工作也不愿求助于使用自动安装 XML 文件
这是我使用 izpack 5.0.0 的 Izpack XML
<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
<!--
A sample installation file.
Use it as a base for your own installers :-)
To compile it :
- go in the bin directory where you installed IzPack
- call "compile ../sample/install.xml -b ../sample"
-->
<installation version="1.0">
<!--
The info section.
The meaning of the tags should be natural ...
-->
<info>
<appname>EMEProvisioningSDK</appname>
<appversion>${project.version}-Linux</appversion>
<!--
<authors>
<author name="Anthony Lafleur-Tighe" email="anthony.lafleur-tighe@ericsson.com"/>
</authors>
<url>http://prodcat.ericsson.se/frontend/category.action?code=FGB%20101%20652&path=%5cNavigation%20Root%5cFGA%20101%2017%5cFGB%20101%20743%5cFGB%20101%20399</url>
Roll -->
</info>
<!--
The gui preferences indication.
Sets the installer window to 640x480. It will not be able to change the size.
-->
<guiprefs width="640" height="480" resizable="yes"/>
<!--
The locale section.
Asks here to include the English and French langpacks.
-->
<locale>
<langpack iso3="eng"/>
</locale>
<!--
The resources section.
The ids must be these ones if you want to use the LicencePanel and/or the InfoPanel.
-->
<resources>
<res id="LicencePanel.licence" src="Licence.txt"/>
<res id="InfoPanel.info" src="Readme.txt"/>
<res id="ProcessPanel.Spec.xml" src="installProvisioningPanelSpec_linux.xml" />
<res id="shortcutSpec.xml" src="shortcutSpec_linux.xml" />
</resources>
<!--
The panels section.
We indicate here which panels we want to use. The order will be respected.
-->
<panels>
<panel classname="HelloPanel"/>
<panel classname="InfoPanel"/>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="PacksPanel"/>
<panel classname="InstallPanel"/>
<panel classname="ProcessPanel" />
<panel classname="ShortcutPanel"/>
<panel classname="FinishPanel"/>
</panels>
<!--
The packs section.
We specify here our packs.
-->
<packs>
<pack name="Base" required="yes">
<description>The base files</description>
<file src="Readme.txt" targetdir="$INSTALL_PATH"/>
<file src="Licence.txt" targetdir="$INSTALL_PATH"/>
<file src="unzip.exe" targetdir="$INSTALL_PATH"/>
<file src="changePermissions.sh" targetdir="$INSTALL_PATH"/>
</pack>
<pack name="MCDProxy" required="yes">
<description>The MCDProxy</description>
<file src="install_mcd.sh" targetdir="$INSTALL_PATH"/>
<file src="mcdproxy-component-eme-resource-assembly.zip" targetdir="$INSTALL_PATH"/>
<file src="global-config.zip" targetdir="$INSTALL_PATH"/>
<file src="MCDPROXY-CXC1736424-win32.zip" targetdir="$INSTALL_PATH"/>
<file src="postgresql-jdbc-driver.jar" targetdir="$INSTALL_PATH"/>
</pack>
<pack name="Tomcat" required="yes">
<description>Tomcat 7, web container for Provisioning Agent</description>
<file src="tomcat-7.0.20-noarch-full.zip" targetdir="$INSTALL_PATH"/>
<file src="install_tomcat.sh" targetdir="$INSTALL_PATH"/>
<file src="tomcat-users.xml" targetdir="$INSTALL_PATH"/>
<file src="security-component.jar" targetdir="$INSTALL_PATH"/>
<file src="libsysutils-component.jar" targetdir="$INSTALL_PATH"/>
<file src="libsysutils.so" targetdir="$INSTALL_PATH"/>
<file src="common-oam.jar" targetdir="$INSTALL_PATH"/>
<file src="common-debug.jar" targetdir="$INSTALL_PATH"/>
<file src="common-cache.jar" targetdir="$INSTALL_PATH"/>
<file src="common-mcd.jar" targetdir="$INSTALL_PATH"/>
<file src="common-crypto.jar" targetdir="$INSTALL_PATH"/>
<file src="mcc_common.jar" targetdir="$INSTALL_PATH"/>
<file src="common-xml.jar" targetdir="$INSTALL_PATH"/>
<file src="mcc_mfs.jar" targetdir="$INSTALL_PATH"/>
<file src="mcc_sm.jar" targetdir="$INSTALL_PATH"/>
<file src="security-component.jar" targetdir="$INSTALL_PATH"/>
<file src="authentication-api.jar" targetdir="$INSTALL_PATH"/>
<file src="mcc_identityformatter.jar" targetdir="$INSTALL_PATH"/>
<file src="mail.jar" targetdir="$INSTALL_PATH"/>
<file src="javax.mail-api.jar" targetdir="$INSTALL_PATH"/>
<file src="mio-valve.jar" targetdir="$INSTALL_PATH"/>
<file src="mio-filters.jar" targetdir="$INSTALL_PATH"/>
<file src="mio_startup.sh" targetdir="$INSTALL_PATH"/>
</pack>
<pack name="Provisioning Agent" required="yes">
<description>The Provisioning Agent</description>
<file src="install_pa.sh" targetdir="$INSTALL_PATH"/>
<file src="provisioningagent-web.war" targetdir="$INSTALL_PATH"/>
<file src="provisioningagent-eme-config-assembly.zip" targetdir="$INSTALL_PATH"/>
<file src="samples.zip" targetdir="$INSTALL_PATH"/>
</pack>
<pack name="PostgreSQL" required="yes">
<description>PostgreSQL Relational DB</description>
<file src="postgresql-9.1.2-150.1.x86_64.rpm" targetdir="$INSTALL_PATH"/>
<file src="postgresql-libs-9.1.2-66.1.x86_64.rpm" targetdir="$INSTALL_PATH"/>
<file src="postgresql-server-9.1.2-150.1.x86_64.rpm" targetdir="$INSTALL_PATH"/>
<file src="pg_hba.conf" targetdir="$INSTALL_PATH"/>
<file src="install_postgresql.sh" targetdir="$INSTALL_PATH"/>
<executable targetfile="$INSTALL_PATH/changePermissions.sh" type="bin" stage="postinstall" keep="true" failure="warn" os="linux">
<args>
<arg value="$INSTALL_PATH"/>
</args>
</executable>
</pack>
</packs>
</installation>
最佳答案
换行
<installation version="1.0">
到
<installation version="5.0">
IzPack 5.0.* 将无法与版本 1.0 一起正常工作。
关于linux - Izpack 控制台安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19451078/
我听说最好不要从您系统的 Perl 版本所在的 CPAN 安装模块。我知道如何使用命令行安装模块,我只是想知道是否有办法将 CPAN 与系统核心 Perl 分开。 我应该: 下载源代码并专门为这些模块
我听说最好不要从系统的 Perl 版本所在的 CPAN 安装模块。我知道如何使用命令行安装模块,我只是想知道是否有办法将 CPAN 与系统的核心 Perl 分开。 我应该: 下载源代码并专门为这些模块
单独安装 electron 与通过 electron-builder 安装有什么区别?我正在使用 React 构建一个 Electron 应用程序,并且已经找到了一些教程。它们安装 Electron
两者安装有什么区别?我按照安装页面上的说明在全局范围内安装了 webpack,然后我转到了入门指南,据说在那里可以在本地安装 webpack-cli。 CLI = Command Line Inter
我在 OS X Yosemite 上用 PHP 安装了默认的 Apache 服务器,安装了 pear,用 brew 安装了 Solr (brew install solr),现在我正在尝试使用 PEC
我解压并编译了 Ruby 2.1 并安装了几个支持工具。 但是当我安装了 libssl-dev 时,OpenSSL 不会安装。 我在支持 openssl 时遇到这个错误: make: *** No r
我在 android studio 2.3.1 和 gradle 3.2 中设计了 2 到 3 个应用程序。当我从它运行应用程序到任何设备或模拟器时,一切都工作正常。但是当我从构建文件夹中获取该 ap
我注意到我正在读一本书提到通过 apt-get 安装 numpy 和 opencv apt-get install python-numpy python-opencv 但我可以通过以下方式在 pip
我正在尝试在 Windows 8.1 上安装 ansicon。我提取了文件并达到了我需要调用 ansicon -i 的级别。当我在 cmd 中输入此内容并运行 python 脚本时效果很好,但是当我通
我有 linux MINT 17.3 Kernel 4.4.0-81 所有更新可用。 (由于不同的原因,我无法迁移到更新版本的 ubuntu/mint) 我已经通过 PPA 安装了 FFMPEG(不是
尝试在本地运行我的应用程序时出现错误: 我只在 chrome 浏览器中收到此错误。我尝试过不同的东西,但我不确定为什么它是 Chrome 特定的。 最佳答案 我怀疑这不是 Firebase 问题,而是
这是我第一次开发 AngularJS 应用程序并使用脚手架工具 Yeoman ( http://yeoman.io/ )。我想对我的一些图标使用 fontawesome ( http://fortaw
我知道您通常“应该”$ pip install 如果包没有 brew ,但如果有一个你想安装的 python 包,你可以使用 $ pip install或 $ brew install为了?例如,通过
我正在尝试通过 RVM 安装 Ruby 1.9.3。然而,当谈到安装 RubyGems 时,我得到了这个: curl: (22) The requested URL returned error: 4
我是真正提出问题的新手,但你去吧。 我一直在尝试按照安装指南添加 dnsname: https://github.com/containers/dnsname https://github.com/c
Studio更新至0.4.0 建筑产量为“需要1.8版Gradle”;将设置设置为1.8 bin目录; 建立 “要求1.9级”;将设置设置为1.9 bin; 建立 “要求1.8级” 啊。不知道该怎么做
我刚刚注意到 kernel.org 因维护而停机。是否有使用不同镜子的不同公式?或者我可以向 Homebrew 软件添加不同的来源(如 bundler ?)? 谢谢你的帮助! 最佳答案 快速解决方法:
当我运行时: peardev install phpunit/PHPUnit 我得到以下信息: No releases available for package "pear.phpunit.de/P
服务器操作系统为Fedora 24. 64bit。 我想安装 Git 2.6.6。 所以下载源码并安装。 此服务器离线。所以我不使用“yum”。 ./configure --prefix=/usr/l
我正在尝试在我自己的服务器(操作系统:Linux Ubuntu Server 12.04)上安装 OpenEdX,但我遇到了同样的错误。谁能帮帮我? TASK: [ insights | insta
我是一名优秀的程序员,十分优秀!