- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: User and password correction at logon
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
02-08-2004 06:23 PM
02-08-2004 06:23 PM
Without changing nothing it stops working.
Has anyone in idea to get it back again ?
(I have been said by HP hotline that it was impossible ...)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 06:30 PM
02-08-2004 06:30 PM
Re: User and password correction at logon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 06:35 PM
02-08-2004 06:35 PM
Re: User and password correction at logon
When it appear to work, it works everywhere, whatever was the connection type, so that I do not think about a keyboard mapping problem.
I have four HP UX boxes and it appears only on one ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 07:08 PM
02-08-2004 07:08 PM
Re: User and password correction at logon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 07:21 PM
02-08-2004 07:21 PM
Re: User and password correction at logon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 07:24 PM
02-08-2004 07:24 PM
Re: User and password correction at logon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 01:22 AM
02-09-2004 01:22 AM
SolutionTo set them for backspace and ^U I have included the following as part of my system boot (under /sbin/init.d).
stty erase '^H' kill '^U' intr '^C' susp '^Z'
Executing the above once (like at boot) will set the default backspace and line kill characters for all telnet connection. Do a "man stty" for further info.
HTH
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 01:57 AM
02-09-2004 01:57 AM
Re: User and password correction at logon
I have check it from the command line...
I apologize for my lack of knowledge but I do not know how to put this in my boot sequence. :-((
Can you help me ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 02:09 AM
02-09-2004 02:09 AM
Re: User and password correction at logon
#!/sbin/sh
#
#
# Set stty settings for sysconf (so Backspace works on login)
#
PATH=/sbin:/usr/sbin:/usr/bin
export PATH
rval=0
case $1 in
start_msg)
echo "Enable BS to work for Login"
;;
'start')
stty erase '^H' kill '^U' intr '^C' susp '^Z' ;;
*)
echo "usage: $0 {start}"
rval=1
;;
esac
exit $rval
======================
Then "cd /sbin/rc2.d" and create a symbolic link to the new file.
ln -s /sbin/init.d/fix_tty_bs S901fix_tty_bs
This will cause the script to be run each time at system boot.
HTH
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 02:12 AM
02-09-2004 02:12 AM
Re: User and password correction at logon
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 02:51 AM
02-09-2004 02:51 AM
Re: User and password correction at logon
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 03:14 AM
02-09-2004 03:14 AM
Re: User and password correction at logon
The link won't give it a parameter at startup time...
Am I wrong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 04:07 AM
02-09-2004 04:07 AM
Re: User and password correction at logon
S901fix_tty_bs start
"start" is passed to each startup script. HP has some documentation on developing startup scripts that discusses this.
HTH
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2004 04:48 AM
02-09-2004 04:48 AM
Re: User and password correction at logon
Bill Hassell, sysadmin