Mirando por internet he encontrado esto
Problems loading shared libraries The error message that I'm talking about looks a bit like this: error in loading shared libraries: libclntsh.so.8.0: cannot open shared object file: No such file or directory This is the same as NT complaining that it can't find a DLL. It's very easy to fix. Simply add the following line to the end of your ".profile" if you're using a Bourne-like shell (ask a local guru if you don't know): export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib Or use the following line if you're using a CSH-like shell: setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH $ORACLE_HOME/lib" I don't use the C-Shell, so independent verification of this command would be appreciated. --- Te dice lo que tienes que hacer, no se si funciona porque no tengo ningun oracle a mano para probarlo. El documento completo lo tienes en http://www.faqs.org/docs/Linux-HOWTO/Oracle-8-HOWTO.html Ya nos diras si te funciona... Suerte y saludos. On Tue, 09 Nov 2004 22:58:06 +0100, C�sar Fern�ndez Gago <[EMAIL PROTECTED]> wrote: > > Buenas :) > > Necesito usar un cliente para oracle, me he puesto con el de la pagina > de oracle: > > oracle-instantclient-sqlplus-10.1.0.2-1.i386.rpm > > Lo alienizo, lo instalo, y al ejecutar: > > ./sqlplus > ./sqlplus: error while loading shared libraries: libclntsh.so.10.1: > cannot open shared object file: No such file or directory > > Y ahora, ni idea. He indagado y probado tora y DbVisualizer, pero como > tampoco s� si deber�an funcionar, (uno de ellos necesita un cliente ya > funcionando) pues no logr� hacerlos tirar.. > > �Qu� me recomiendan? > > PD: escribo bajo una testing - unstable.. y no me gustar�a tener que ir > a winxx para conectar con oracle :-m > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > >

