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
тАО08-12-2008 02:24 PM
тАО08-12-2008 02:24 PM
top: Unknown terminal "VT100" in $TERM
The remote host is Red Hat Enterprise Linux 3 and has the environment variable XTERM=vt100.
The local host is Red Hat Enterprise Linux 4 and has the environment variable XTERM=xterm.
Any idea?
Should I change set XTERM=xterm into the remote host? what other funcionaliti is going to change or fail if I change that variable in remote host?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-12-2008 06:45 PM
тАО08-12-2008 06:45 PM
Re: ssh top
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-13-2008 01:24 AM
тАО08-13-2008 01:24 AM
Re: ssh top
export TERM=vt100
Might want that in the user profile as well.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-13-2008 07:20 AM
тАО08-13-2008 07:20 AM
Re: ssh top
The upper case is only the message shown, the value of the env variable is "vt100".
Steven:
I have set the env variable XTERM=vt100 in the local machine but the result is exactly the same error message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-13-2008 08:19 AM
тАО08-13-2008 08:19 AM
SolutionI've got a test below going from RH5 to RH4 (not the same, I know, but as close as I could come)...
$> ssh remote_host "(export TERM=xterm; top)"
top: failed tty get
I tried with "ssh -X" and got the same thing.
The problem is, it will fail the "isatty()" code check in the program.
So, what you need is a whole new xterm:
$> ssh -X remote_host "xterm -e top"
Now you'll get a new window with top running in it.
Close enough???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-13-2008 12:15 PM
тАО08-13-2008 12:15 PM
Re: ssh top
Thank you!