+ -
当前位置:首页 → 问答吧 → [求助]Zend Studio 5.2在linux(Ubuntu)下奇怪的问题

[求助]Zend Studio 5.2在linux(Ubuntu)下奇怪的问题

时间:2006-07-16

来源:互联网

Zend Studio 5.2在linux(Ubuntu)下按Ctrl+F,进行查找,然后键盘就不好使了,鼠标依然好使。
使用的输入法是scim-bridge,换成fcitx也一样。不知道是什么原因

作者: qingyue   发布时间: 2006-07-15

查找出结果了吗?

作者: PHPChina   发布时间: 2006-07-19

没有。可能和scim输入法有关系,可是换成其他的也不行啊。

作者: qingyue   发布时间: 2006-08-29

朋友,,你的zendstudio怎么装到ubuntu上面的啊。我怎么装不上?

作者: suker   发布时间: 2006-11-14

1、下载相应的文件:

http://www.phpchina.com/?action_viewnews_itemid_189.html

2、给文件可执行的权限
sudo chmod +r 文件名

3、运行安装文件
sudo 文件名

说明:文件名可能包含文件的路径

然后一路next就可以了

作者: qingyue   发布时间: 2006-11-14

朋友,我在ubuntu 2.6.17直接装都装不上zend studio,,
提示是这样的:
[tim@pinkbox Downloads]$ ./ZendStudio-5_2_0.bin
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
/bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

Launching installer...

grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
/tmp/install.dir.11452/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
[tim@pinkbox Downloads]$

I wanna evaluate Zend Studio and see if i likes it.
However, i got a problem... Just look up

And the problem is that Zend's scripts are trying to set LD_ASSUME_KERNEL which gives me those errors. Im using kernel version 2.6.17
看一下哇。

作者: suker   发布时间: 2006-11-16

引用:
原帖由 suker 于 2006-11-16 13:44 发表
朋友,我在ubuntu 2.6.17直接装都装不上zend studio,,
提示是这样的:
$ ./ZendStudio-5_2_0.bin
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Ex ...
原因是:Zend Studio自带的JRE跟系统中的某些类库起冲突了。

安装之前先执行:
复制内容到剪贴板
代码:
sudo cat ZendStudio-5_2_0.bin.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" >  ZendStudio-5_2_0.bin
安装之后执行:
复制内容到剪贴板
代码:
cd /usr/local/Zend/ZendStudioClient-5.1.0/bin

cp ZDE ZDE.bak

cat ZDE.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > ZDE

rm ZDE.bak
(记得加sudo,或者自己切换到root用户,呵呵)

[ 本帖最后由 Yimin 于 2006-11-18 16:43 编辑 ]

作者: Yimin   发布时间: 2006-11-18