我很难让jssh和firefox在Ubuntu 64位机器上玩得很好。有人知道让这件事起作用所需的具体步骤吗?(或者,如果你用其他的方法让火炬手工作,我也会把这些作为答案)
以下是我尝试过的几件事:
火狐-jssh
telnet localhost:9997
我得到了错误:
尝试:1.
尝试127.0.0.1..。
telnet:无法连接到远程主机:使用以下mozconf文件连接Refused
。
The file:
mk_add_options MOZ_CO_PROJECT=browser
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-jssh
ac_add_options --enable-extensions=default,jssh
ac_add_options --enable-application=browser
The command:
make -f client.mk
I get the Error:
make[6]: [WebGLContext.o] Error 1
make[6]: Leaving directory `/home/bernie/sources/mozilla-central/firefox-jssh/content/canvas/src'
make[5]: [src_libs] Error 2
make[5]: Leaving directory `/home/bernie/sources/mozilla-central/firefox-jssh/content/canvas'
make[4]: [canvas_libs] Error 2
make[4]: Leaving directory `/home/bernie/sources/mozilla-central/firefox-jssh/content'
make[3]: [libs_tier_gecko] Error 2
make[3]: Leaving directory `/home/bernie/sources/mozilla-central/firefox-jssh'
make[2]: [tier_gecko] Error 2
make[2]: Leaving directory `/home/bernie/sources/mozilla-central/firefox-jssh'
make[1]: [default] Error 2
make[1]: Leaving directory `/home/bernie/sources/mozilla-central/firefox-jssh'
make: [build] Error 2发布于 2009-10-02 19:46:51
你可以试着放松一下这个指令:(在谷歌上找到的,但我不得不纠正一点):
您必须安装一些包才能签出并成功编译firefox。
sudo apt-get build-dep firefox
sudo apt-get install mercurial libasound2-dev libcurl4-openssl-dev libnotify-dev libxt-dev libiw-dev libglu1-mesa-dev然后从存储库克隆firefox源代码
此版本在firefox外接程序兼容性方面存在问题。
要快速解决此问题,请安装此加载项http://www.oxymoronical.com/web/firefox/nightly。
hg clone http://hg.mozilla.org/mozilla-central/
cd mozilla-central在当前目录中创建一个新文件.mozconfig
gedit .mozconfig并将以下构建选项粘贴到其中。
mk_add_options MOZ_CO_PROJECT=browser
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-jssh
ac_add_options --enable-extensions=default,jssh
ac_add_options --enable-webservices
ac_add_options --enable-application=browser那就去做
autoconf2.13
cd js/src
autoconf2.13
cd ../..和编译使用
make -f client.mk build如果失败,请安装显示在错误消息中的所需软件包。
现在
./firefox-jssh/dist/bin/firefox -jssh
telnet localhost:9997幸运的是,您应该看到“欢迎来到Mozilla JavaScript Shell!"
祝你好运,耐心点,编辑需要一段时间。
发布于 2009-09-21 08:45:10
你看过这个吗?
http://wiki.openqa.org/display/WTR/FireWatir+on+Ubuntu
这里已经编译了Linux:
http://wiki.openqa.org/display/WTR/FireWatir+Installation#FireWatirInstallation-2)InstalltheJSSHFirefoxExtension
https://stackoverflow.com/questions/1447253
复制相似问题