- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Linux to HP-UX access
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
Discussions
Discussions
Discussions
Forums
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
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
тАО11-01-2000 08:12 AM
тАО11-01-2000 08:12 AM
Linux to HP-UX access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 08:17 AM
тАО11-01-2000 08:17 AM
Re: Linux to HP-UX access
is pressed
On the console or more precisely when not in (MEDIUM)RAW mode use
% loadkeys mykeys.map
and under X use
% xmodmap mykeys.xmap
Note that (since XFree86-2.1) X reads the Linux settings of the keymaps when initialising the X
keymap. Although the two systems are not 100% compatible this should mean that in many
cases the use of xmodmap has become superfluous.
For example suppose that you would like the Backspace key to send a BackSpace (^H octal
010) and the grey Delete key a DEL (octal 0177). Add the following to /etc/rc.local (or
wherever you keep your local boot-time stuff):
/usr/bin/loadkeys << EOF
keycode 14 = BackSpace
keycode 111 = Delete
EOF
Note that this will only change the function of these keys when no modifiers are used. (You need
to specify a keymaps line to tell which keymaps should be affected if you want to change
bindings on more keymaps.) The Linux kernel default lets Ctrl-Backspace generate BackSpace
- this is sometimes useful as emergency escape when you find you can only generate DELs.
The left Alt key is sometimes called the Meta key and by default the combinations AltL-X are
bound to the symbol MetaX. But what character sequence is MetaX? That is determined
(per-tty) by the Meta flag set by the command setmetamode. The two choices are: ESC X or
X or-ed with 0200.
`Why doesn't the Backspace key generate BackSpace by default?'
(i) Because the VT100 had a Delete key above the Enter key.
(ii) Because Linus decided so.
5.3 How to tell X to interchange Delete and Backspace
% xmodmap -e "keysym BackSpace = Delete" -e "keysym Delete = BackSpace"
Or if you just want the Backspace key to generate a BackSpace:
% xmodmap -e "keycode 22 = BackSpace"
Or if you just want the Delete key to generate a Delete:
% xmodmap -e "keycode 107 = Delete"
(but usually this is the default binding already).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 08:19 AM
тАО11-01-2000 08:19 AM
Re: Linux to HP-UX access
stty erase ^?
I put this command in a script, called the script b, and whenever I have the problem I just enter b from the prompt and I am all set. Maybe this is a simplistic approach, but it works for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 08:26 AM
тАО11-01-2000 08:26 AM
Re: Linux to HP-UX access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 08:29 AM
тАО11-01-2000 08:29 AM
Re: Linux to HP-UX access
stty erase ^?
in my .profile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 08:30 AM
тАО11-01-2000 08:30 AM
Re: Linux to HP-UX access
Richard Darling
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 09:33 AM
тАО11-01-2000 09:33 AM
Re: Linux to HP-UX access
stty erase "^H" echoe
as he states he needs to CTL-H to backspace. I believe "^?" is the delete key.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 09:38 AM
тАО11-01-2000 09:38 AM
Re: Linux to HP-UX access
I must confess it happens to me too since some apps reset stty..., and if you map the keyboard (ReflectionX) you have to choose a default host keyboard, thats fine till you have to connect to something different...
I think it some a question of finding an acceptable compromise...
Best regards
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-02-2000 05:46 AM
тАО11-02-2000 05:46 AM