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
09-12-2003 02:01 AM
09-12-2003 02:01 AM
is there anyway at all that I can get HPUX to respond to backspace? Is there something I can do to the shell? Perhaps install a new shell
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:11 AM
09-12-2003 02:11 AM
Solutionstty erase
This then sets your terminal settings to respond to your backspace key.
stty -a should show;
speed 9600 baud; line = 0;
rows = 30; columns = 102
min = 1; time = 0;
intr = ^C; quit = ^\; erase = ^H; kill = ^U
Note erase shows as a CTRL-H so if your backspace key is not repsonding you can do stty erase CTRL-H
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:12 AM
09-12-2003 02:12 AM
Re: Shell
I think you're looking for the ERASE setting on your terminal. for example :
# stty ERASE
See "man stty" for a full description.
Cheers,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:17 AM
09-12-2003 02:17 AM
Re: Shell
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:19 AM
09-12-2003 02:19 AM
Re: Shell
How are you connecting to HP-UX? Is this via a terminal emulator? If so, there may be other considerations other than just setting "stty erase". WRQ's ReflectionX product, for one, needs to have the Keyboard Settings option "Backspace key sends delete" set to off.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:19 AM
09-12-2003 02:19 AM
Re: Shell
1. export HISTFILE=$HOME/.sh_history
2. set -o vi
You usually put these in your .profile so when you login they run.
Now you can use ESC K to scroll back or ESC / to search for previous commands.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:28 AM
09-12-2003 02:28 AM
Re: Shell
(a24y0Cs1A".profile" 51 lines, 1052 characters a0y0C# @(#)B.11.11_LRa2y0C# Defaul
# Be sure that VUE does not invoke tty commandsa15y3Cif [ ! "$VUE" ]; thena17y3C
# Set upfia0y0Ca24y0C".profile" 51 lines, 1052 charactersa0y0C)
Does anyone have any idea what is happening at all?
Thanks
Sorry for cramming all these requests into one single question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:33 AM
09-12-2003 02:33 AM
Re: Shell
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:33 AM
09-12-2003 02:33 AM
Re: Shell
TERM=dtterm
or if vi is still screwed try TERM=vt100 or TERM=hp (if you are using an hpterm)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 02:37 AM
09-12-2003 02:37 AM
Re: Shell
Pete
Pete