- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Junk display coming over reflection
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
10-13-2010 10:40 PM
10-13-2010 10:40 PM
Junk display coming over reflection
Iâ m getting the below screen on Reflection X in one of the blades. It was also coming in putty but somehow got resolved on its own. I am attaching the screen shot of the same. Please gud me on this.
Model : Integrity Blade server, 11.31
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2010 12:25 AM
10-14-2010 12:25 AM
Re: Junk display coming over reflection
To get back to normal display mode, type "reset" and press Enter. You may have to type it blindly, as the display is not readable; but your keyboard is still sending the correct characters to the command prompt, even though dtterm is displaying them as line-drawing characters.
To find the file that causes this error, use the command "ll -b" and look for a file or directory that has octal number sequences (like \NNN where N is a number) embedded in its name. Once you find it, rename it and your problem should be gone. You probably can use the \NNN sequences as-is in the rename command too. (Each \NNN sequence represents one character.)
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2010 02:36 AM
10-14-2010 02:36 AM
Re: Junk display coming over reflection
Thnkx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2010 06:14 AM
10-14-2010 06:14 AM
Re: Junk display coming over reflection
1. The emulator may not be logging in normally (this is the dumb default) so profiles are not run. To fix this, login and then type this command:
echo "*loginShell=true" >> $HOME/.Xdefaults
Then exit and start another terminal window from CDE. You should see normal profile messages now.
2. Someone has hardcoded the TERM variable (ie, export TERM=hp or similar). This should never be done, but instead, identify the incoming terminal using ttytype. ttytype will identify the terminal emulator from several hundred models that it knows. In /etc/profile, look in /etc/profile for code similar to this:
if [ "$TERM" = "" -o "$TERM" = "unknown" -o "$TERM" = "dialup" \
-o "$TERM" = "network" ]
then
eval `ttytype -s -a`
fi
Replace all of this (from if to fi) with these 2 lines:
eval $(ttytype -s)
eval $(resize)
Now the shell has the correct terminal settings.
PuTTY is a fairly powerful (and free) terminal emulator and much easier to use than any Xwindow stuff. When you run Xwindows, a LOT of graphics data has to flow across the network. With PuTTY, just the text for the keyboard and screen will be exchanged. And to quickly manage automatic logins with PuTTY, look a PuTTY connection manager.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2010 07:05 AM
10-14-2010 07:05 AM
Re: Junk display coming over reflection
I'm not aware of the shell recognizing that for arbitrary commands. You might be able to use echo:
mv $(echo 'abc\123') abc
Or rm -i: rm -i abc*
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2010 11:49 PM
10-21-2010 11:49 PM
Re: Junk display coming over reflection
echo(1) wants the octal to have a leading 0:
mv $(echo 'abc\0123') abc