0

I have to use cygwin on Windows but altough (like many users complain) the boot is fast, the execution of commands is very, very, very slow. When run on Linux partition it takes at least one tenth of the time. Is there some way to make it work faster? I followed the steps found here (second answer) but it didn't work.

j0s3
  • 13
  • 1
  • 2
  • Usually a specific example of what are you referring to is useful to provide specific comments. – matzeri May 29 '20 at 11:31

1 Answers1

1

In Cygwin what is slow is the execution of the fork call. As Microsoft systems do not provide the tools to easily mimic a POSIX fork, Cygwin DLL implements a lot of trick to execute a fork and that makes the full process slow.

Running a single program that does not fork is as fast as a normal Windows program.

matzeri
  • 8,062
  • 2
  • 15
  • 16