- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- X-Terminal CDE Login Window Font Too Large
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-14-2003 12:30 PM
01-14-2003 12:30 PM
We're using some Envizex II X Terminals. For the most part, we have 19" monitors connected to these terminals. But a few of the X Terminals have 17" Monitors attached and at that, the Envizex II is autodetecting them and forcing them to 1024x768 mode. I've tried changing the monitor setting to 1280x1024 but it just gets autodetected/reset to 1024x768 at the next reboot.
* Anyway, that isn't the problem I'm hoping to solve ATM. What I am more concerned about is that on these 17" monitors, the dtgreeting (? The CDE Login window) barely displays any of the welcome text because the font looks so big on these 17" monitors.
Is there a way to tell dtgreet to use a smaller font? Otherwise, is there a good method for forcing the X Terminal to use a 72 dpi font? Would that work and how could I go about configuring the X Terms to do that?
Thanks a bunch!
Brian
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 12:49 PM
01-14-2003 12:49 PM
Re: X-Terminal CDE Login Window Font Too Large
Have you tried changing the settimgs while CDE was running ?
/opt/graphics/common/bin/setmon -r
to see all available settings
/sbin/init.d/dtlogin stop
/opt/graphics/common/bin/setmon -s {number}
to set a specific mode.
/sbin/init.d/dtlogin start
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 10:50 PM
01-14-2003 10:50 PM
Solution1.cp /usr/dt/config/C/Xresources /etc/dt/config/C/Xresources
2.Edit Xresources file
from
According to the monitor size you can change the fontlist
if your monitor setting is 1024X768 you can
change
//dtlogin*greeting.fontList: -dt-interface system-medium-r-normal-xl*-*-*-*-*-*-*-*-*://
//Dtlogin*greeting.fontList: -dt-interface system-medium-r-normal-s*-*-*-*-*-*-*-*-*://
ie.change xl to s
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 11:10 PM
01-14-2003 11:10 PM
Re: X-Terminal CDE Login Window Font Too Large
another reason might be that no font server is setup / used. Check this document:
http://www4.itrc.hp.com/service/cki/search.do?category=c0&mode=id&searchCrit=allwords&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&searchString=KBRC00000472
Regards,
Jochen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 12:32 AM
01-15-2003 12:32 AM
Re: X-Terminal CDE Login Window Font Too Large
setting up xfs is a GOOD idea.
monitor resolution : ensure you are not using a remote config file see Terminal-> Remote Config -> Download on next reboot via the xterminal config gui ..
Next try setting monitor res : Terminal-> Monitor
save and reboot the xterminal
the resourses for dtgreet should also have some effect.
ps once xfs is setup : plenty of info on how to do this via the search utility on this site, you will need to add the font server path to the xterminals fontpath head
again via the config gui -> Xserver->font Path-> add tcp/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 08:46 AM
01-15-2003 08:46 AM
Re: X-Terminal CDE Login Window Font Too Large
It came down to the Xresources file. For some reason, my systems even had a nifty it-then-else configuration setup up already:
#if WIDTH < 1024
Dtlogin*greeting.fontList: -dt-interface system-medium-r-normal-l*-*-*-*-*-*-*-*-*#else
#else
Dtlogin*greeting.fontList: -dt-interface system-medium-r-normal-xxl*-*-*-*-*-*-*
-*-*:
** The only catch was, my 17" monitor screen size WAS 1024 wide, and so it wasn't less than 1024... I changed the < to a <= and it worked like a champ!
I also configured the X Terminal to use a font server per the discussion and links provided.
Thanks everyone!