- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How do I read what is in a shared library (.sl)
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
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
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
тАО07-26-2004 09:02 PM
тАО07-26-2004 09:02 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2004 09:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2004 09:15 PM
тАО07-26-2004 09:15 PM
Re: How do I read what is in a shared library (.sl)
nm - print name list of common object file
Regards
Rainer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2004 12:30 AM
тАО07-27-2004 12:30 AM
Re: How do I read what is in a shared library (.sl)
--
ranga
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-27-2004 02:47 AM
тАО07-27-2004 02:47 AM
Re: How do I read what is in a shared library (.sl)
We can find the printable strings in a shared library with the help of strings command.
nm command : To print name list of common object file. i.e Symbol table information is printed thru nm command.
strings command : To find the printable strings in an object or other binary file
# strings libcma.sl | grep cma__get_mutex
cma__get_mutex
cma__get_mutex
# nm libcma.sl | grep cma__get_mutex
cma__get_mutex | 128736|uext |stub |
cma__get_mutex | 206536|extern|entry |
cma__get_mutex | 206560|extern|code |$CODE$
ma__get_mutex | 398952|uext |stub |
#
# elfdump -tx test | grep read
3 SECT LOCL 0 0x1d (0x1d ) 0x400000e0 0 __thread_specific_seg
40 FUNC WEAK 0 UNDEF (UNDEF ) 0x0422b740 0 read
80 FUNC WEAK 0 UNDEF (UNDEF ) 0x0422b740 0 read
#
we can find with elfdump -tx option in IPF machine
Regards,
Saravanan