* Florian Gamböck <m...@floga.de> [150708 03:15]: > Am 08.07.2015 um 02:48 schrieb walt: > > Next time this happens I'll include the output of stty -a. [..SNIP..] > > After a small `diff`, the following changes have been made: > lnext from ^V to <undef>; icrnl, icanon, and echo from on to off (they > all got prefixed with a -). > > Any ideas what can cause this behavior? > > Regards, > --Flo
A program can change terminal settings like this. For example, when ssh reads a password it can turn off echo so the password does not show up. If you interrupt the program (^C) and it doesn't have a handler that restores the original settings then this can happen. I haven't looked for that specifically in the ssh source code though. And it sounds like it's happening to people even without interrupting programs so it's unlikely the cause of all the problems. Todd