如何在 Solaris 中的 xterm 上启动 Eclipse

发布于 2024-10-14 15:39:53 字数 798 浏览 8 评论 0原文

有没有办法在 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 技术交流群。

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

发布评论

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

评论(1

我的影子我的梦 2024-10-21 15:39:53

只要您位于 eclipse 文件夹中,./eclipse 就应该运行它,但是,您可能希望将其与终端实例分离,因此:

./eclipse &
bg %1 # assuming it's the only job running.
disown 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:

./eclipse &
bg %1 # assuming it's the only job running.
disown eclipse

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.

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