- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- crt0: ERROR couldn't open /usr/lib/dld.sl errno: 0...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 01:13 AM
09-30-2004 01:13 AM
When our programmer run a "c" program after compiling it, we get an error as given below.
crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000024
Server : L1000
Os version :11.00
Can anybody help me out in this.
Regards
Roby
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 03:35 AM
09-30-2004 03:35 AM
Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000024
crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000024 is not enough to analyse the problem. what is the program you tried.?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 07:05 AM
09-30-2004 07:05 AM
SolutionI think the error is that there are too many open files. I base that on the idea that 24 is a general error code, e.g.:
# grep 24 /usr/include/sys/errno.h
.....
#define EMFILE 24 /* Too many open files */
.........
I suggest you try and check that by running
# sar -v 2 10
and pay special attention to the file-sz column when your programmer runs his program. If it is near the limit then try to increase the maxfile parameter.
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 07:54 AM
09-30-2004 07:54 AM
Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000024
[EMFILE] Too many open files. No process may have more than a
system-defined number of file descriptors open at a
time.
Check out maxfiles.
Best regards,
Kent M. Ostby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 09:13 AM
09-30-2004 09:13 AM
Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000024
This may help in diagnosing the problem.
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 09:19 AM
09-30-2004 09:19 AM
Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000024
root@crdushp5:/usr/include/sys
# ls -al err*
-r--r--r-- 1 bin bin 8747 Oct 27 1997 errno.h
root@crdushp5:/usr/include/sys
# grep 24 errno.h
#define EMFILE 24 /* Too many open files */
root@crdushp5:/usr/include/sys
Check you nfile parameter and analyse using sar/glance.
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 04:47 PM
09-30-2004 04:47 PM
Re: crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000024
increase the parameters nfile and maxusers in the kernel.
regds,