New answers tagged cygwin
1
The Cygwin FAQ mentions "resource temporarily unavailable" as one of the error messages that can occur because of the way Windows handles process creation. The potential solutions it lists are:
Restart the process
Remove all applications known to conflict with Cygwin
Follow the instructions in /usr/share/doc/rebase/README to run rebaseall
4
Yes, of course you have to:
rsync -e 'ssh -p 222' ...
or:
RSYNC_RSH='ssh -p 222' rsync ...
Alternatively, you can specify in ~/.ssh/config that ssh connections to that host are to be on port 222 by default:
Host that-host
Port 222
0
Find this in .bashrc:
# Make bash append rather than overwrite the history on disk
# shopt -s histappend
and uncomment the second line!
Top 50 recent answers are included
