- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cannot use Stty erase in Exceed
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-27-2002 07:58 AM
06-27-2002 07:58 AM
Cannot use Stty erase in Exceed
Any takers?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:01 AM
06-27-2002 08:01 AM
Re: Cannot use Stty erase in Exceed
Make sure that you have set 'DTSOURCEPROFILE=true' in '.dtprofile'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:05 AM
06-27-2002 08:05 AM
Re: Cannot use Stty erase in Exceed
User is not running CDE. User is just opening an telnet to get to this server..
Problem is, any attempts to setup backspace does not work.
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:07 AM
06-27-2002 08:07 AM
Re: Cannot use Stty erase in Exceed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:11 AM
06-27-2002 08:11 AM
Re: Cannot use Stty erase in Exceed
Have the user run
stty -a
after login & see what the erase value is set to.
If strange have them do
stty erase
If that now back spaces correctly, just set that up in the user's .profile, .login, whatever.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:12 AM
06-27-2002 08:12 AM
Re: Cannot use Stty erase in Exceed
what is the Users login Shell..stty sometimes gives trouble in C.. In Ksh it works fine..
Stty erase ^H
regards
george
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:13 AM
06-27-2002 08:13 AM
Re: Cannot use Stty erase in Exceed
Run stty -a on the user terminal and see the output.
You should be very careful in trping this
stty erase "^H"
Use the Shift and 6 for getting --> ^
Use Shift and h for getting --> H
Then do stty -a again to see that it has been set to ^h
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:17 AM
06-27-2002 08:17 AM
Re: Cannot use Stty erase in Exceed
Firstly, thanx for the suggestions...
I issued the stty as the user and noted that even though I had included the actual stty erase "^H" command in his .login, his .cshrc, and the global one /etc/csh.login, that somehow, it was being wiped out/not being set.
Currently, I added this to his .cshrc after I did the stty.. Logged in as the user, and it seems to work, however, the ultimate test is when I have the user login himself and give it a try..
Cheers!
Mike-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:30 AM
06-27-2002 08:30 AM
Re: Cannot use Stty erase in Exceed
Backspace key sends delete - not checked
Allow clients to remap keyboard - checked
Hope this helps,
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 08:48 AM
06-27-2002 08:48 AM
Re: Cannot use Stty erase in Exceed
(1) an error in the .login/.cshrc file is occurring before the stty command is executed, bombing out of the script.
(2) ^H is the wrong choice. When I telnet into an HP box with Reflections, I get ^? when I hit the backspace key. What does your user get?
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 10:04 AM
06-27-2002 10:04 AM
Re: Cannot use Stty erase in Exceed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 12:43 PM
06-27-2002 12:43 PM
Re: Cannot use Stty erase in Exceed
stty -ixany -iexten
stty erase ^H
stty kill ^U
stty intr ^C
Make sure that the TERM is set to either xterm or vt100. If the TERM is something else, you may have a problem with how backspace has been defined in the terminfo file for that emulation.
Also, make sure that you are NOT executing in the .profile/.login any stty sane, reset, or tset that may monkey with the backspace setting.
From this client's connection, do a "ttytype" and see what it returns. Mine returns "vt100", even though the TERM variable is set to "xterm", but the backspace works ok.
HTH
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 04:16 AM
06-28-2002 04:16 AM
Re: Cannot use Stty erase in Exceed
Once I was able to confirm by modifying his .cshrc to issue the command, and I was finally able to make contact with the user and have the user logged in, everything worked great, and the user is happy...
Again, thanx for your suggestions..
Mike