No output to CL when typing in CL.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting No output to CL when typing in CL.
# 1  
Old 12-10-2008
No output to CL when typing in CL.

Hello all,
I am in a terminal on Solaris and something weird is happening...

When I am typing I can't see what I am typing, although what I am typing is working. As is if I type the command and hit enter, the command runs.

Anyone have a clue why or how I can make it display my typing?

Is this a profile or shell issue?
# 2  
Old 12-10-2008
Sounds like you have you your terminal set so that it dosn't echo back the characters that you type in.

Try typing "stty echo" and see if that fixes it.

It could be that somthing is set incorrecty in your login profile, or one of the scripts that are executed from it.

stty -echo can be used within a script to stop sensitive information from being displayed on the screen, for example, a password.

Have a look at the stty man page for more details.
# 3  
Old 12-11-2008
1) If "stty echo" doesn't fix it, try "stty sane".
2) Whether this is a terminal emulator or a real terminal, try turning "local echo" on in the terminal setup.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. HP-UX

@ typing creates new line

Dear Concern, Please go through the article https://www.unix.com/hp-ux/134072-typing-sign-creates-new-line.html As per the article, we need to initiate below commands. But after creating new session, we face same problem. Please advise. stty intr "^c" stty kill "^u" Please find below... (6 Replies)
Discussion started by: makauser
6 Replies

2. Shell Programming and Scripting

Zero typing problem!

H, I I have this below script for removing the full path from a string which is indeed a filepath location if windows. It converts input \abc\asssh\abc To abc But if filename has 0 like: \abc\abc\00000Hgg Then its typing abc00000Hgg PLEASE note that its solaris. Script is: more... (10 Replies)
Discussion started by: nixhead
10 Replies

3. UNIX for Dummies Questions & Answers

No $ when typing cw

Hi As a dummy my question is very simple. When typing cw I've read (many times) that a '$' should appear at the end of the word I'm about to change. However, it doesn't, and in my case the word is instantly deleted and so ready to be changed! Can somebody tell me why this is, or maybe I... (4 Replies)
Discussion started by: joesh
4 Replies

4. UNIX for Dummies Questions & Answers

Typing in Japanese language

Hi. I am running Solaris 10,HPUX 11.31 and AIX 6.1. I am trying to get my system to write in Japanese. I can choose the Japanese language for the system to display, but I cannot figure out how to write in Japanese. I have set up my system, and Mozilla (including the menu and web pages) to display... (1 Reply)
Discussion started by: meeraramanathan
1 Replies

5. UNIX and Linux Applications

Learn typing in Chinese

I have a burning desire to learn how to type in chinese (and after, probably with success, in another languages). How to do this, all symbols are needed, and methods of input also. And a map of chinese keyboar layout will be helpful. I want very much study program. (3 Replies)
Discussion started by: Xcislav
3 Replies

6. UNIX for Dummies Questions & Answers

Stuck after typing goto

uname -a returns: SMP Tue May 17 17:52:23 EDT 2005 i686 athlon i386 GNU/Linux I have many aliases beginning with "goto" so... if I type goto and then hit return (oops) A goto prompt pops up and I cant exit from it(I tried MANY key seqs) The only way to exit is to kill the term window... (2 Replies)
Discussion started by: rairey
2 Replies

7. UNIX for Dummies Questions & Answers

tab instead of typing in ksh

Does anyone know how to set up ksh, so I can use tab instead of typing every letter out for the commands? Also, how do I set it up, so I can type exit once to exit the shell instead of multiple times. Does anyone know a good reference link for ksh commands? Thank you. (2 Replies)
Discussion started by: Jane@ist
2 Replies

8. Programming

hide password typing

I am doing a project in C program which requires to type in password in Unix terminal. Does anybody know how to shade or not output any words typed by user in the terminal? I use the function scan() to read typing from user. Thanks in advance. (2 Replies)
Discussion started by: ivancheung
2 Replies
Login or Register to Ask a Question