- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- The attribute of shared library list
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
01-29-2010 01:08 AM
01-29-2010 01:08 AM
The attribute of shared library list
We used chatr to list the dependency of libwireshark.sl:
...
static /usr/local/lib/libroken.sl
dynamic /usr/local/lib/libcrypto.sl
static /usr/local/lib/libsmi.sl.2
dynamic /usr/lib/libm.2
...
I don't understand why libroken.sl is linked as "static"??
Thanks
Rick
- Tags:
- chatr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2010 04:05 AM
01-29-2010 04:05 AM
Re: The attribute of shared library list
Dynamic means you linked it as: -L/usr/local/lib -lcrypto -lm.
You can change these with "chatr -l" or "chatr +l"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2010 01:29 AM
02-04-2010 01:29 AM
Re: The attribute of shared library list
"static" means that there is no search at runtime, only the specified (recorded) path will be used to look for the library.
"dynamic" means that the library will be searched for in all the applicable paths (from embedded path, SHLIB_PATH and LD_LIBRARY_PATH) and finally in the specified (recorded) path.
--
ranga
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2010 07:40 AM
02-07-2010 07:40 AM
Re: The attribute of shared library list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2010 07:42 AM
02-07-2010 07:42 AM