- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- X11 Failed to load shared library
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
тАО09-16-2008 04:46 AM
тАО09-16-2008 04:46 AM
X11 Failed to load shared library
I'm having an issue getting X11 up and running on a fresh Technical Operating Environment install of 11.23. Startx is throwing the following errors:
/usr/lib/dld.s1 invalid share library file:
/usr/lib/X11/Xserver/modules/screens/hp/rw.1
/usr/lib/dld.s1: Excec format error
Xcollector failed to load shared library
/usr/lib/X11/Xserver/modules/screens/hp/rw.1
I'm most familiar with using X11 on Linux machines but I would assume this is a driver related issue because of the failure to load specific modules. The graphics card in question is an HP Visualize FX5.
Any help would be greatly appreciated
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2008 05:31 AM
тАО09-16-2008 05:31 AM
Re: X11 Failed to load shared library
All needed libraries must be found on the path of the SHLIB_PATH variable.
if the required libraries are installed (files exist) and on the PATH this should work.
1.) Install needed libraries
2.) set SHLIB_PATH variable correctly.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2008 05:36 AM
тАО09-16-2008 05:36 AM
Re: X11 Failed to load shared library
The "Exec format error" suggests that the library codefile isn't for you machine type. Do:
# file /usr/lib/X11/Xserver/modules/screens/hp/rw.1
...and post the results if in doubt.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2008 07:02 AM
тАО09-16-2008 07:02 AM
Re: X11 Failed to load shared library
rw.1; commands text (this can't be good)
cat rw.1
@(#) Obsolete module
I can allready tell that this is a problem since modules generally should be binary files. I am unaware of how to set which module should be use with X. In linux one would just edit the driver line in the XF86 conf file.
Also and echo of the SHLIB_PATH variable returned nothing and env also does not show this variable. I am unaware of what to set it too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2008 11:28 AM
тАО09-16-2008 11:28 AM
Re: X11 Failed to load shared library
You could create an empty shlib with the name rw.1 and move it in place.
>In linux one would just edit the driver line in the XF86 conf file.
If there is a configuration file that lists rw.1, the application may be dynamically loading what's in the file, so remove it.
>SEP: All needed libraries must be found on the path of the SHLIB_PATH variable.
Either that or LD_LIBRARY_PATH for ELF dlds. Or be hardcoded in the load module.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2008 06:55 PM
тАО09-16-2008 06:55 PM
Re: X11 Failed to load shared library
Or just link in libc.sl:
ln -s /usr/lib/libc.sl rw.1