Shared Library Problem

I have this error when I try to do check on the oracle database...
Can you help me figure out whats the problem? Thanks for all the help!

/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'.
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'.
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'.
/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0
/usr/lib/dld.sl: No such file or directory
sh: 28741 Abort(coredump)
/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0
/usr/lib/dld.sl: No such file or directory
sh: 28747 Abort(coredump)
/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0
/usr/lib/dld.sl: No such file or directory
sh: 28750 Abort(coredump)

For starters -- what I think is going on:

/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'. 
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'. 
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'. 

The file you are trying to run was linked as a 64 bit ELF file.
dld is trying to search $ORACLE_HOME for libjox8.sl and cnnot find it or permissions on the directory or the file are bad.

/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0 
/usr/lib/dld.sl: No such file or directory 
The file you are running expects the Oracle library to be in
/oracle/D00/817_64/ and it can't open the shared library.

...same problem on down.

You need to define $ORACLE_HOME to point to where Oracle is installed.

You need to make sure that Oracle is in the directory: /oracle/D00/817_64/

-- and that you have permissions to access it and the lib directory under it.