- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Terminal problem
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
12-02-2003 02:52 AM
12-02-2003 02:52 AM
When I tried to run "pico" under "/usr/local/bin", it always printed out:
"Unknown terminal type hpterm!", even I have tried to set TERM to "hpterm",
"vt100".
Any good idea for that ?
Thanks a lot !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 02:58 AM
12-02-2003 02:58 AM
Re: Terminal problem
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 03:34 AM
12-02-2003 03:34 AM
Re: Terminal problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 04:03 AM
12-02-2003 04:03 AM
Re: Terminal problem
have you done
TERM=vt100
export TERM
?
greetings,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 04:18 AM
12-02-2003 04:18 AM
Re: Terminal problem
if [ "$TERM" = "" -o "$TERM" = "hp" ]
then
eval ` tset -h -s -Q `
else
eval ` tset -s -Q `
fi
and then echo $TERM to see what it gets set to.
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 04:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 07:13 AM
12-02-2003 07:13 AM
Re: Terminal problem
Thanks a lot !
You are so cool !!!
Yes, after i setup the TERMCAP, it worked!
so, i need to setup these to make pico work:
export TERM=vt100
export TERMCAP=/usr/share/lib/termcap
Thanks once again !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 08:36 AM
12-02-2003 08:36 AM
Re: Terminal problem
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2003 09:15 PM
12-02-2003 09:15 PM
Re: Terminal problem
if Harry is so cool, would you be so kind to give at least him some points for his solution? ;-)
thanks,
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2003 12:35 AM
12-03-2003 12:35 AM
Re: Terminal problem
Thanks again !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2003 02:24 AM
12-03-2003 02:24 AM
Re: Terminal problem
no points here, but it is good etiquette to assign a value from zero to 10 for all posts...
Thanks and gratz on your solution to your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2005 03:16 AM
05-12-2005 03:16 AM
Re: Terminal problem
Although I add the following to the profile:
export TERM=vt100
export TERMCAP=/usr/share/lib/termcap
It's working within Putty or Reflection, but not DOS PROMPT.
Our developers want to use regular telnet from Dos Prompt ( run "cmd" ), then login to Unix to edit their files with Pico, but have the same error:
$ /usr/local/bin/pico
Unknown terminal type vt100!
So, what can I do ?
Thanks !