- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Error on File /usr/lib/libstream.1 and libCsup.1 f...
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
10-29-2002 04:23 AM
10-29-2002 04:23 AM
Error on File /usr/lib/libstream.1 and libCsup.1 from B.10.20???
/lib/dld.sl: Unresolved symbol: $global (data) from /usr/lib/libstream.1 ..... /usr/lib/libCsup.1...... (See the attached file for detail)
I'd like to know what is wrong with this Error.
Thank you.
Armand.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2002 04:36 AM
10-29-2002 04:36 AM
Re: Error on File /usr/lib/libstream.1 and libCsup.1 from B.10.20???
Nothing is wrong with the error, the error was generated because you are missing links to libraries.
Contact your software vendor!
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2002 04:41 AM
10-29-2002 04:41 AM
Re: Error on File /usr/lib/libstream.1 and libCsup.1 from B.10.20???
Is this application compile on your system ?
This message signification is that the symbol is not define in this library. And if you done a nm on the 2 library you can show that symbols are not in this library.
Regards,
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2002 06:06 AM
10-29-2002 06:06 AM
Re: Error on File /usr/lib/libstream.1 and libCsup.1 from B.10.20???
I was busy to test the nm command for the both libraries :
nm -p /.usr/lib/libstream.1 | grep versioned
This is the command I've typed but how can I know that the symbol is not defined?
The application is an executable running successfully on HP-Unix B.11.00 32 bits. However, is there any file or linked missed in B.10.20?
Thanks for your assistance,
Armand.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2002 06:19 AM
10-29-2002 06:19 AM
Re: Error on File /usr/lib/libstream.1 and libCsup.1 from B.10.20???
In this exemple I show symbol wich contains date :
nm /usr/lib/libc.2|grep date
__getdate_error | 565968|extern|code |$CODE$
__getdate_error | 565968|extern|entry |
__getdate_r | 566888|extern|code |$CODE$
__getdate_r | 566888|extern|entry |
__p_update_section_syms|1073759304|extern|data |$DATA$
....
I can show that __getdate_error, __getdate_r, ... are defined in the libc.2.
$ nm /usr/lib/libc.2|grep toto
$
yhis command give me any result that seam that toto isn't define in libc.2.
Regards,
Jerome