https://bugs.winehq.org/show_bug.cgi?id=38039
Bug ID: 38039 Summary: linux console leaves in stty echo off mode after executing bash.exe from Wine Product: Wine Version: 1.7.35 Hardware: x86 OS: Linux Status: NEW Keywords: download, source, testcase Severity: normal Priority: P2 Component: kernel32 Assignee: wine-bugs@winehq.org Reporter: fracting@gmail.com Distribution: ---
Created attachment 50674 --> https://bugs.winehq.org/attachment.cgi?id=50674 Patch: Hack console to restore "echo mode"
Steps to reproduce:
1. Install msysGit for Windows: https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview201412...
2. cd to the directory of bash.exe
3. executing bash.exe: bin$ wine bash.exe -c "./ls -l"
4. Wine will execute bash.exe and then exectue ls.exe, the output is expected at this stage
5. try to type anything in the same Linux console after ls.exe quit
Expect result: Typed characters should be echoed back Actual result: Typed characters are not echoed back, but typed commands run as expected.
Workaround: A. execute `stty echo` to enable echo mode again B. apply the attached hack patch