Operating System - HP-UX
1833031 Members
2061 Online
110049 Solutions
New Discussion

Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000023

 
Pradeepkumar C R
New Member

crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000023

In HP-UX we are getting following error frequently

crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000023

please help what to do?

2 REPLIES 2
Dennis Handly
Acclaimed Contributor

Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000023

I believe errno 23 is ENFILE, file table overflow. You need to increase the value of the kernel parm nfile.
James R. Ferguson
Acclaimed Contributor

Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000023

Hi:

You could have at learned what error 23 pointed you to by looking first at '/usr/include/sys/errno.h' and noting that it corresponds to ENFILE. Then, if you examine the manpages for 'errno(2)' you could read that ENFILE is the error reported for a file table overflow, which is fenced (of course) by the kernel 'nfile' parameter.

Regards!

...JRF...