我在Linux中的Java应用程序中使用了JBoss 7.1.1应用程序服务器,并且已经能够在IZPack(processSpec.xml)的处理阶段成功启动JBoss。在处理阶段,我收到“找不到命令”消息。我决定摆脱所有评论,消息消失了。但是,当我执行卸载时,mkdir和ln -s -T会附加一个“?”在文件名和链接的末尾。这是一个错误吗? rm -r成功删除了/etc/init.d中的jboss脚本,但未能删除/etc/jboss-7.1.1.Final中的jboss-as.conf文件。我在/ usr / share有jboss的家。 rm -r无法删除/ standalone和/ modules。在卸载过程中出现一个弹出窗口,指出删除/ standalone和/ modules需要管理特权。
感谢所有输入。
格伦
最佳答案
rm(1)手册页注释:
Otherwise, if a file is unwritable, standard input is a terminal, and the -f or --force option is not given, or the -i or
--interactive=always option is given, rm prompts the user for whether to remove the file. If the response is not affirma-tive, the file is skipped.
在文件名后附加
?
的声音听起来像是提示。您正在尝试删除文件,这是只读的。
rm -r
无法删除内容,可能是因为您不拥有/ standalone和/ modules。大概您需要“管理特权”才能将它们安装在第一位。关于linux - 在IZPack 5.0.0的处理阶段中,Linux命令mkdir,rm -r和ln -s -T,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23859856/