如何在 Solaris 中的 xterm 上启动 Eclipse
有没有办法在 Sun Solaris 的 xterm 上启动 Eclipse。我尝试执行 ./eclipse 命令,但它没有启动 eclipse。
更新:
显示已设置。请在下面找到详细信息。
% 回显 $DISPLAY
169.52.56.88:0.0
%回显$JAVA_HOME
/usr/jdk/jdk1.5.0_14/
% java
/usr/jdk/jdk1.5.0_14/bin/java
% cd ~schoudha
:/home/schoudha> cd 日食
:/home/schoudha/eclipse> ./eclipse &
[1]23699
:/home/schoudha/eclipse>背景%1
[1] + ./eclipse &
[1] + 退出 15 ./eclipse
ps -ef | grep spantul1
spantul1 19475 19295 0 00:57:38 分/101 0:00 -csh
斯图尔1 19295 15910 0 00:57:29 ? 0:00 /usr/openwin/bin/xterm -ls -sl 200 -显示 169.52.56.88:0.0
spantul1 24041 19475 0 00:59:59 点/101 0:01 ps -ef
spantul1 24042 19475 0 00:59:59 点/101 0:00 grep spantul1
Is there a way to bring up Eclipse on xterm in Sun Solaris. I tried to execute the ./eclipse command, but it does not bring up eclipse.
Update:
The DISPLAY is set. Please find the details below.
% echo $DISPLAY
169.52.56.88:0.0
% echo $JAVA_HOME
/usr/jdk/jdk1.5.0_14/
% which java
/usr/jdk/jdk1.5.0_14/bin/java
% cd ~schoudha
:/home/schoudha> cd eclipse
:/home/schoudha/eclipse> ./eclipse &
[1] 23699
:/home/schoudha/eclipse> bg %1
[1] + ./eclipse &
[1] + Exit 15 ./eclipse
ps -ef | grep spantul1
spantul1 19475 19295 0 00:57:38 pts/101 0:00 -csh
spantul1 19295 15910 0 00:57:29 ? 0:00 /usr/openwin/bin/xterm -ls -sl 200 -display 169.52.56.88:0.0
spantul1 24041 19475 0 00:59:59 pts/101 0:01 ps -ef
spantul1 24042 19475 0 00:59:59 pts/101 0:00 grep spantul1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要您位于 eclipse 文件夹中,
./eclipse
就应该运行它,但是,您可能希望将其与终端实例分离,因此:应该为您提供一个正在运行的实例并释放终端会话。
如果您不在 eclipse 文件夹中,最好的办法是将其添加到
$PATH
中,然后您就可以从任何地方运行。As long as you are in the eclipse folder,
./eclipse
should run it, however, you will probably want to detach it from the terminal instance, so:Should give you a running instance and free up the terminal session.
If you are not in the eclipse folder, best thing to do is add it to the
$PATH
and then you can run if from anywhere.