Aptana Studio 和 Aptana Studio 的问题 XULRunner 8.1

发布于 2024-07-24 07:11:46 字数 501 浏览 3 评论 0原文

我最近安装了 Ubuntu Jaunty,当我尝试在其下运行 Aptana Studio 时遇到问题。 与内部浏览器的任何交互都会导致系统崩溃。 我检查了日志,经过一番谷歌搜索后得出的结论是,由于与我的系统上安装的 XULRunner 9.0 不兼容,它崩溃了。 我遵循了我遇到的几个解决方案,安装了 XULRunner 8.1(到不同的目录),并将 MOZILLA_FIVE_HOME 环境变量指向该特定版本,如建议的那样。

export MOZILLA_FIVE_HOME=/usr/lib/xulrunner-8.1

然而,问题依然存在! 当我 cd 进入 xulrunner-8.1 目录并执行 ./xulrunner -v 时,它仍然将其列为版本 9! 我无法卸载 9.x,因为其他几个主要软件包依赖于它,其中之一就是我安装的 Gnome 版本。

这是我自从使用 RedHat 7.2 以来第一次使用 Linux,所以我可能忘记了做一些明显的事情。 谁能帮我吗?

I recently installed Ubuntu Jaunty and I'm encountering a problem when I try to run Aptana Studio under it. Any interaction with the internal browser crashes the system. I checked the log and after some Googling came to the conclusion that it was crashing due to the incompatibilty with XULRunner 9.0 which is installed on my system. I followed a couple of solutions I came across and installed XULRunner 8.1 (to a different directory) and pointed the MOZILLA_FIVE_HOME enviornmental variable to that particular version, as suggested.

export MOZILLA_FIVE_HOME=/usr/lib/xulrunner-8.1

However, the problem persists! When I cd into the xulrunner-8.1 directory and perform a ./xulrunner -v it still lists it as being version 9! I can't uninstall 9.x as several other major packages depend on it, one of which is the version of Gnome I have installed.

This is my first time using Linux since I played around with RedHat 7.2 waybackwhen, so I'm probably forgetting to do something obvious. Can anyone help me out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

倾城°AllureLove 2024-07-31 07:11:46

我也在 Ubuntu Jaunty 上运行 Aptana,并遇到了与您类似的问题。 这个线程解决了我的问题,我总是启动我的 Aptana来自启动脚本。 特别是“stevewalker”的帖子。 只是在这里发布他的启动脚本:-

#!/bin/sh
MOZILLA_FIVE_HOME=/usr/lib/xulrunner
if [ $LD_LIBRARY_PATH ]; then
   LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH
else
   LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME
fi
export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
/usr/local/aptana/AptanaStudio $@

希望这有帮助! =)

I run Aptana on Ubuntu Jaunty as well and met with similar problems as yourself. This thread solved my problem, and I always launch my Aptana from a startup script. Particularly, the post by 'stevewalker'. Just to post his startup script here:-

#!/bin/sh
MOZILLA_FIVE_HOME=/usr/lib/xulrunner
if [ $LD_LIBRARY_PATH ]; then
   LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH
else
   LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME
fi
export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
/usr/local/aptana/AptanaStudio $@

Hope this helps! =)

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