- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- linux as an X terminal
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
тАО01-07-2005 08:17 AM
тАО01-07-2005 08:17 AM
My biggest problem was to get Cap Locks to work on HP-UX. This is what I did:
I edited /etc/inittab to go to level 3
I edited /etc/X11/XF86Config:
- added HP-UX font servers
- uncommented XdbDisable (this gives me CapLock on HP-UX)
I edited /home/peter/.bashrc
function saturn
{
X -query saturn -terminate
}
function hp101
{
X -query hp101 -terminate
}
comments?
I am going to try to set up HP fonts on linux, any suggestions?
Right now I have a NVIDIA video card, a GeForce 4 Mx driver connected to a Philips 17" LCD monitor. I want 19" monitors, what kind should I buy?
Another question: how can I set up RedHat to accept print jobs from HP-UX?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2005 07:08 AM
тАО01-08-2005 07:08 AM
Re: linux as an X terminal
you can just set HPUX jobs directly to network printer. But if you want to use RH as spooler - read CUPS docs here http://www.cups.org
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2005 12:09 AM
тАО01-10-2005 12:09 AM
Solution- the capslock problem is caused by a problem with the HP-UX client libraries for Xlib. They have a problem dealing with Xservers that use the XKB extension. Workaround it by defining the environment variable:
XKB_DISABLE=1
This will need to be done *prior* to any apps that you want started on HP-UX, so you need to ensure that this is the in the dtlogin configuration file, /usr/dt/config/Xconfig in the resource Dtlogin*environment. You may need to ensure that this is defined in all user's logins (.profile) and for any custom apps you have.
The method you chose is somewhat easier in that you told the Xserver on Linux to disable the XKB extension altogether.
- As far as setting up HP fonts on Linux - just setup a font server on HP-UX and configure the Linux machines to use it.
- Print jobs - use lprng as it is most similar to lp on HP-UX even if more limiting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-20-2005 06:57 AM
тАО04-20-2005 06:57 AM
Re: linux as an X terminal
- uncommented XkbDisable
more notes:
configure Red Hat Linux
security: no firewall
turn off iptables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-02-2005 08:14 AM
тАО08-02-2005 08:14 AM
Re: linux as an X terminal
to fix it I followed Rick Beldin's suggestion: I put the comment back in XF86Config on the Linux workstation. On HP-UX, I edited .profile
XKB_DISABLE=1; export XKB_DISABLE
also I added
stty erase "^?"
for Linux
all is well
thanks again to Rick Beldin