- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- font server type1 not starting
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-07-2016 06:56 AM
10-07-2016 06:56 AM
font server type1 not starting
when starting the xfs with default configuration I get the errors:
xfs error: Warning: Rasterizer "/usr/lib/X11/fs/ufstrast.sl" could not be loaded: Invalid argument
xfs error: Warning: Rasterizer "/usr/lib/X11/fs/iforast.sl" could not be loaded: Invalid argument
But I can't get any information about paarmeters for these rasterizers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2016 08:37 PM
10-09-2016 08:37 PM
Re: font server type1 not starting
>xfs error: Warning: Rasterizer "/usr/lib/X11/fs/ufstrast.sl" could not be loaded: Invalid argument
This is most likely EINVAL, an argument to a syscall. You might be able to use tusc(1m) to track it down.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2016 10:50 PM
10-09-2016 10:50 PM
Re: font server type1 not starting
The "could not be loaded" in the message seems to imply that xfs is trying to explicitly load this shared library (".sl").
First, check with the "file" command whether the shared library file exists and is of the right architecture (PA-RISC or IA64) and bit width (32-bit or 64-bit) - they should all match the xfs executable. If there is a mismatch, you need to fix that.
I could find this file only on a PA-RISC system.
[ ranga ] $ file /usr/lib/X11/fs/ufstrast.sl /usr/lib/X11/fs/ufstrast.sl: PA-RISC1.1 shared library -not stripped [ ranga ] $ file /usr/bin/X11/xfs /usr/bin/X11/xfs: PA-RISC1.1 shared executable dynamically linked -not stripped dynamically linked
On HP-UX, a shared library can be loaded explicitly using either dlopen(3C) or shl_load(3X).
[ ranga ] $ ldd -y,shl_load /usr/bin/X11/xfs : shl_load (code) : needed by /usr/bin/X11/xfs; found in /usr/lib/libdld.2
No such "needed" found for dlopen, though.
So, looking at the shl_load(3X) man page:
[EINVAL] The specified handle or index is not valid or an attempt was made to load a library at an invalid address.
That does not look helpful - shl_load does not need handle or index to be specified. Perhaps the man page does not cover all the cases for which shl_load would return EINVAL; shl_load will leave the value of errno as set by the last system call. So, as Dennis suggests the next step is to identify which system call set errno to EINVAL.
--
ranga