wuebbel

Results 6 comments of wuebbel

See https://github.com/ish-app/ish/issues/2075. You need to recompile sftp-server.

My scenario is: Run ssh port forwarding in a-shell, then call chrome on the localhost address. Generally this works, but sending a-shell to the background will pause it. The workaround...

Same here. The problem is, I believe, that the sftp-server dies immediately after being called. If you call the sftp-server manually, you get: ``` # /usr/lib/ssh/sftp-server -e unable to make...

Yes. this works. ``` $ scp out wuebbel@ipad-von-frank-2: out 100% 385KB 1.6MB/s 00:00 ``` The only thing I changed was ``` iPad-von-Frank-2:~/openssh-portable# grep platform_disable sftp-server.c platform_disable_tracing(0); /* strict */ ```

@freebrowser1 No. I think you are completely on the wrong track. As I wrote above, call the sftp-server executable directly in ish. If it returns immediately, *that* is your problem....

@freebrowser1 Change the line I mentioned in the first post. > by changing in sftp_server.c ` platform_disable_tracing(1); /* strict */ > to ` platform_disable_tracing(0); /* not strict */` I missed...