- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dec-vt320
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
06-25-2007 02:04 AM
06-25-2007 02:04 AM
We have an Application that is telneting to our HP-UX IA-64 box that is expecting a TERM type of dec-vt320. It looks like no TERM Type of the kind exists for HP-UX 11.23 (IA-64). Is there a way to make this work or at least trick the application to think it's getting dec-vt320 and link it to vt320 or something? Or maybe install something to allow for this?
Thanks in advance for any ideas or workarounds...
KPS
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2007 02:15 AM
06-25-2007 02:15 AM
Re: dec-vt320
You say you have an application that is telneting to HP that expects vt-320?
Are you running this on PC w/ a terminal emulator? If so, does the emulator support vt320?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2007 02:21 AM
06-25-2007 02:21 AM
Re: dec-vt320
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1138243
If not, what exactly, are you trying to accomplish?
For example, "i have application yxv on a PC that needs...."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2007 02:21 AM
06-25-2007 02:21 AM
Re: dec-vt320
Is this per chance an appliaction running on hpux expecting to talk to a vt320?
How does check? Envorinment variables? Query to terminal/emulator like 'what are you'.
Anyway
Check out the manpages for terminfo, tic and untic.
I have used those tools succesfully to declare a new terminal / alias name.
Also check out your emulator settings.
Finally... I have a little Windoze product called 'VT320e'. It is a 'Multia' terminal emulator produced in 1995 by Digital. For the longest time it was my favourite, but I since switched to PuTTy. Send me an Email if you think that product might solve your problem.
Hope this helps some,
Hein van den Heuvel (at gmail dot com)
HvdH Performance Consulting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2007 02:30 AM
06-25-2007 02:30 AM
Re: dec-vt320
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1138243
The above inquiry from last week is surrounding the same question. The way I understand it is the Application has a Telnet utility that certain folks need to use. For some reason, when the Telnet Util is used within the application to the HP-UX 11.23 host, we get the following message from a PC:
Type dec-vt320 unknown
Why the Telnet Utility within the Application is trying to use this is beyond me. Please let me know if this clears anything up or helps?
Thanks again,
-KPS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2007 02:53 AM
06-25-2007 02:53 AM
Solutionin either case, it appears that when the login runs, the script /etc/profile is getting run. part of this is a terminal identification "ttytype -s -a" which appears to be getting answered "dec-vt320".
make the following change in /etc/profile and see if your application works
# set term if it's not set
if [ "$TERM" = "" -o "$TERM" = "unknown" -o "$TERM" = "dialup" \
-o "$TERM" = "network" ]
then
eval `ttytype -s -a`
fi
# added code here
if [ "$TERM" = "dec-vt320" ]
then
TERM=vt320
fi
# end added code
export TERM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2007 02:57 AM
06-25-2007 02:57 AM
Re: dec-vt320
1) cd /tmp
2) untic vt320 > dec-vt320
3)vi dec-vt320
The first line will be similar to:
vt320|vt320-nam|Digital VT320 w/no automargins,
change it to:
dec-vt320|dec-vt320-nam|Digital VT320 w/no automargins,
4) tic -v dec-vt320
You may get some errors about NULL strings but these can be ignored.
You should be good to go.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2007 09:43 AM
06-25-2007 09:43 AM
Re: dec-vt320
I went with the if, then, statemenet in the /etc/profile and that seems to do the trick.
I think we're in better shape now with this.
Best Regards and Thanks,
KPS