Recently while trying to install Zend Studio 5 on my Linux system I got the following error message:
error while loading shared libraries: libc.so.6
After searching around on the net for a while I figured out a solution. You have to alter the install script (ZendStudio-5_0_0.bin) as follows:
[root@localhost Zend]# tar -xvzf ZendStudio-5_0_0.tar.gz ZendStudio-5_0_0.bin [root@localhost Zend]# cp ZendStudio-5_0_0.bin ZendStudio.bin [root@localhost Zend]# cat ZendStudio.bin | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > ZendStudio-5_0_0.bin [root@localhost Zend]# ./ZendStudio-5_0_0.bin
This fires up the installer without error. Note that to run the program I have to do it from the correct install directory like so:
[justin@localhost ~]$ cd /usr/local/Zend/ZendStudioClient-5.0.0/bin/ [justin@localhost bin]$ ./runStudio_unix.sh
Hola:
He hecho lo que me dices, pero he tenido este error:
Hello:
I do what you say, but I have this error:
No protocol specified
Invocation of this Java Application has caused an InvocationTargetException. This application will now exit. (LAX)
Stack Trace:
java.lang.NoClassDefFoundError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:164)
at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:68)
at java.awt.Window.init(Window.java:270)
at java.awt.Window.(Window.java:318)
at java.awt.Frame.(Frame.java:419)
at java.awt.Frame.(Frame.java:384)
at com.zerog.ia.installer.LifeCycleManager.g(DashoA8113)
at com.zerog.ia.installer.LifeCycleManager.h(DashoA8113)
at com.zerog.ia.installer.LifeCycleManager.a(DashoA8113)
at com.zerog.ia.installer.Main.main(DashoA8113)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.zerog.lax.LAX.launch(DashoA8113)
at com.zerog.lax.LAX.main(DashoA8113)
This Application has Unexpectedly Quit: Invocation of this Java Application has caused an InvocationTargetException. This application will now exit. (LAX)
What thatś means??
Likely this is an error in your PATH variable. I forget exactly how this works, but more or less there are links that are breaking in the compilation of the code. These links can't find the target code (they're constructing paths to the libraries that don't resolve to actual code). This is a problem with your java installation rather than with Zend Studio I think.