我无法使用以下命令在Linux上使用附加的配置文件启动jvm:

java -Xverify:none -agentlib:JPIBootLoader=JPIAgent:server=enabled;CGProf TestClass

我收到以下错误:

Error occurred during initialization of VM
agent library failed to init: JPIBootLoader
CGProf: command not found


在Windows上,上述命令成功运行,并且从类的main方法获取消息。

linux详细信息

uname -a Linux michael 3.8.0-19-generic#29-Ubuntu SMP Wed Apr 17 18:16:28 UTC 2013 x86_64 x86_64 x86_64 GNU / Linux

LD_LIBRARY_PATH = / home / michael / eclipse / tptp / agntctrl.all_platforms-TPTP-4.7.2 / linux_em64t / lib /:/ home / michael / eclipse / tptp / linux.gtk.x86-TPTP-4.7.2 / plugins /org.eclipse.tptp.platform.jvmti.runtime_4.6.3.v201102041710/agent_files/linux_em64t/

TPTP_AC_HOME = / home / michael / eclipse / tptp / agntctrl.all_platforms-TPTP-4.7.2 / linux_em64t

最佳答案

分号引起问题。在linux中,;是同一行上两个单独命令之间的分隔符。与其将事物解释为单个命令,不如将其视为两个命令

java -Xverify:none -agentlib:JPIBootLoader=JPIAgent:server=enabled;




CGProf TestClass


两者都失败了。尝试使用双引号将防止外壳拆分

java -Xverify:none -agentlib:"JPIBootLoader=JPIAgent:server=enabled;CGProf" TestClass


您可能需要尝试在最佳位置加上引号。

09-26 15:27