- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: strange characters when going into SAM through...
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
04-08-2002 05:59 AM
04-08-2002 05:59 AM
strange characters when going into SAM through SSH2 ver. 3.1
When I do a straight telnet into our server, there is no problem with SAM, it's only when using SSH2.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 06:06 AM
04-08-2002 06:06 AM
Re: strange characters when going into SAM through SSH2 ver. 3.1
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 06:27 AM
04-08-2002 06:27 AM
Re: strange characters when going into SAM through SSH2 ver. 3.1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 06:29 AM
04-08-2002 06:29 AM
Re: strange characters when going into SAM through SSH2 ver. 3.1
try a dtterm with this set
-tn term_name
Specify a name to which dtterm sets the TERM environment variable. The default is dtterm. The term_name argument specifies the terminal name used by dtterm.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 06:38 AM
04-08-2002 06:38 AM
Re: strange characters when going into SAM through SSH2 ver. 3.1
For PCs, all bets are off since this is a hidden or non-existent feature. So, to insure that TERM is set correctly, make sure that the TERM test in /etc/profile (and /etc/csh.login) is eliminated:
if [ "$TERM" = "" -o "$TERM" = "unknown" -o "$TERM" = "dialup" ....
The problem is that this test will allow incorrect settings to continue through the login process. The best way to handle this is to always test the terminal type (using ttytype) whether it was set prior to startunbg the shell or not. The setup in /etc/profile would be:
eval $(/usr/bin/ttytype -s)
Execution of this line will test all the popular terminal models and select the best match, followed by the shell command to set TERM, LINES, COLUMNS and ERASE. This should eliminate problems with mismatched terminals (or emulators).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 10:39 AM
04-08-2002 10:39 AM
Re: strange characters when going into SAM through SSH2 ver. 3.1
The issue you are seeing, as Bill points out, is one of your terminal emulator improperly interpreting the characters that SAM is trying to draw on your screen. This can arise from several sources, even from the Font your emulator is using. ((I discovered a couple of ways to get this sort of behavior using Hummingbird's Host Explorer))
A couple of questions for you:
1) Are you using the same terminal emulator program for telnet as for ssh? -- if so, what are the differences in the emulation settings between the two.
2) If your ssh terminal emulator is a different program than the telnet emulator, take a look at the help pages for terminal settings to see if it offers any clues. Also, try a couple of different fonts to see if that makes any difference.
I would note that just because the appearance of the window is a little funky, it doesn't change the fact that SAM still works normally, just with ugly looking borders.....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 11:26 AM
04-08-2002 11:26 AM
Re: strange characters when going into SAM through SSH2 ver. 3.1
I received an email from a someone at ssh and he said "To clear up the SAM problems you could try alternative codepages. In HP_UX 10 (and 11) the default codepage was changed from 819 to 1051
(ROMAN8). You could try changing the codepage back to 819 (or something different) and see if your problem is solved".
Because I do not know anything about codepage, I have not tried what the ssh tech said. Do any of you know what he is talking about