- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPUX 10.20 Font Server for X
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
03-06-2001 03:17 AM
03-06-2001 03:17 AM
We are currently using a linux fontserver to provide true type fornts to one of our web machines used to generate HTML and associated GFX. Orders from on high demand the removal of linux and so I was wondering why it was used in the first place. Apparently X under HP doesn't support true type fonts ?! Is this true? and what steps would I have to take to transfer the linux fonts accross to HP (there is no FS running)?
Any tips hints or advice would be greatly appreciated!!
Cheers,
-ChaZ-
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:12 AM
03-06-2001 06:12 AM
Re: HPUX 10.20 Font Server for X
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:15 AM
03-06-2001 06:15 AM
Re: HPUX 10.20 Font Server for X
To start the font server, edit /etc/rc.config.d/xfs so that it will start on next reboot or run-level change. It starts at run-level 2.
To start it by hand:
/sbin/init.d/xfs start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 06:55 AM
03-06-2001 06:55 AM
SolutionActually the HP-UX font server does support TrueType fonts. You will need to do the following steps to add the fonts to the font server:
1) Create a directory to hold the TrueType fonts:
mkdir /etc/X11/fonts/ttf
2) Copy your TTF font files into the /etc/X11/fonts/ttf directory
3) Build the fonts.dir file:
cd /etc/X11/fonts/ttf
stmkdirs +mocr
At this point you should have a fonts.dir file with the information about your TrueType fonts.
4) Create the fonts.alias file. This should have one entry:
FILE_NAMES_ALIASES
5) Edit /etc/X11/fs/config, and append the entry for /etc/X11/fonts/ttf to the "catalogue =" line.
6) Stop and restart your font server, via the commands:
/sbin/init.d/xfs stop
/sbin/init.d/xfs start
Now in order to reference the font server, you need to run the command:
xset fp+ tcp/
where
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 07:08 AM
03-06-2001 07:08 AM
Re: HPUX 10.20 Font Server for X
Thanks for the support!!!!!!
-ChaZ-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2001 09:25 AM
03-06-2001 09:25 AM
Re: HPUX 10.20 Font Server for X
Again, any help tips or comments appreciated!!!
-ChaZ-