- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Terminal emulation files
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
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
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
тАО05-30-2006 06:15 PM
тАО05-30-2006 06:15 PM
Terminal emulation files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-30-2006 06:21 PM
тАО05-30-2006 06:21 PM
Re: Terminal emulation files
Compare /usr/lib/terminfo on both the servers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-30-2006 07:00 PM
тАО05-30-2006 07:00 PM
Re: Terminal emulation files
/usr/lib/terminfo
/usr/share/terminfo
/usr/share/lib/terminfo
/usr/local/lib/terminfo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2006 01:13 AM
тАО05-31-2006 01:13 AM
Re: Terminal emulation files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2006 01:31 AM
тАО05-31-2006 01:31 AM
Re: Terminal emulation files
That system uses the first letter of the $TERM to locate the defenition
# env TERM=xterm TERMINFO=/tmp/terminfo tput clear
will (try to) use /tmp/terminfo/x/xterm
# export TERM=vt320
# export TERMINFO=/usr/share/lib/terminfo_colr
# tput clear
will (try to) use /usr/share/lib/terminfo_colr/v/vt320
The files that are used in that system are `compiled' files (see 'tic' or 'infocmp'). Files like this are not always portable across systems, even minor OS release differences might harm the working of those files. Don't even `hope' to be able to copy them across Operating Systems and expect them to still work: they won't. If you need to convert them, use 'untic' or 'infocmp'
It can also happen that the util or program uses an even older 'termcap' system, usually by linking to libPW or libtermcap. In that case the database is plain text, and found by using $TERMCAP, which defaults (in most cases) to /etc/termcap. That file should be portable from one system to another, and in most cases even from one OS to another.
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2006 02:02 AM
тАО05-31-2006 02:02 AM
Re: Terminal emulation files
you can transfer then easily:
Logged in at the old host having the terminal set to the wyse-entry, enter
infocmp >/tmp/wyse.trm
Transfer this file to the new system and (as root) enter:
tic -v wyse.trm
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2006 03:48 AM
тАО05-31-2006 03:48 AM
Re: Terminal emulation files
/etc/termcap
I copied it to the newserver and it worked.