- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tera term and TAB
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
тАО08-02-2002 09:02 AM
тАО08-02-2002 09:02 AM
I need to use TeraTerm Terminal emulator, and for some reasons, TAB key wouldn't work. Here is what I get when I press TAB:
dhcp4468107:/> ^[[
When, I am VIing the file, TAB also wouldn't work.
Here my stty settings:
speed 9600 baud; line = 0;
rows = 25; columns = 82
min = 1; time = 0;
intr = ^C; quit = ^\; erase = DEL; kill = ^U
eof = ^D; eol = ^@; eol2
stop = ^S; start = ^Q; susp
werase
parenb -parodd cs7 -cstopb hupcl -cread -clocal -loblk -crts
-ignbrk brkint ignpar -parmrk -inpck istrip -inlcr -igncr icrnl -iuclc
ixon -ixany ixoff -imaxbel -rtsxoff -ctsxon -ienqak
isig icanon -iexten -xcase echo echoe echok -echonl -noflsh
-echoctl -echoprt -echoke -flusho -pendin
opost -olcuc onlcr -ocrnl -onocr -onlret -ofill -ofdel -tostop
Does anyone know how to make TAB to work?
I also tried,
stty tabs tabs, didn't work.
Thanks a lot!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-02-2002 09:14 AM
тАО08-02-2002 09:14 AM
SolutionIt appears that however you have configured teraterm, it is no sending out the tab character, which is a very nonstandard configuration. Use xd to decode what the emulator sends (assuming you cannot fix the emulation problem). To decode what is being sent, type xd, then Enter, now type aTABa and then Enter, then CTRL-D. (TAB is the tab key, not the string: TAB) A 'normal' terminal will show: 6109 610a where 61 is the letter a and 09 is the TAB character.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-02-2002 09:22 AM
тАО08-02-2002 09:22 AM
Re: tera term and TAB
Thank you for the info.
Here is what I get:
dhcp4468107:/> ttytype -s
TERM='vt100'; export TERM;
LINES=25; export LINES;
COLUMNS=82; export COLUMNS;
ERASE='^?'; export ERASE;
dhcp4468107:/> xd
0000000 1b5b 327e 1b5b 327e 1b5b 327e
Configuration seems to be correct, right?
Thanks again!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-02-2002 09:29 AM
тАО08-02-2002 09:29 AM
Re: tera term and TAB
dhcp4468107:/> xd
0000000 1b5b 327e 1b5b 327e 1b5b 327e
ESC [ 2 ~ ESC [ 2 ~ ESC [ 2 ~
which was transmitted by your emulator to HP-UX. So Teraterm is sending a very non-standard sequence, certainly not a VT100 emulator at all. To verify, run the plain old Hyperterm program. If that works OK, time to call Teraterm to how to fix it.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2002 03:50 PM
тАО08-03-2002 03:50 PM
Re: tera term and TAB
1. Run the 'keycode.exe' program supplied by TeraTerm to see what keycode the tab key is generating. The TAB key generates a keycode of 15 on my system. Check for that keycode in the keyboard.cnf file.
2. Try a differnet terminal type from TeraTerm. From the menu, pick Setup..Terminal and chance the terminal ID to a different one. Make sure your profile is not explictly setting the TERM variable. If it is, change the terminal ID to the one you just set.
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-03-2002 04:42 PM
тАО08-03-2002 04:42 PM
Re: tera term and TAB
My preference is to take out the code in /etc/profile (and /etc/csh.login) which bypasses ttytype if TERM is already set. The only way it can get set at login is through the telnet negotiation. By allowing ttytype to always test the terminal, you'll avoind a lot of problems. Note also that the console on all the new machines (N,L,A and the newer rpXXXX machines bypasses normal ttytype processing. See:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa07087dc4d7dd5118ff00090279cd0f9,00.html
Bill Hassell, sysadmin