What packages should I install with Cygwin to make it not bloated but also have everything I would need as a developer? [closed]

Update: I’ve switched over to WSL since posting this answer. If you’re still using Cygwin give it a try. It’s not a drop-in replacement but it’s nicer in a number of ways. Personally, I find having to exit Cygwin just to install new packages annoying enough to try to avoid the just-in-time strategy, and fortunately … Read more

Cygwin no available download site

I had the same issue. i changed my setting in “Select Your Internet Connection” to “Use Internet Explorer Proxy” instead of “Direct Connection”.It worked like a charm. I guess the issue is due to the proxy layer at work.

Installing additional packages for Cygwin

No, adding additional packages doesn’t modify the current settings. There is a package manager called apt-cyg which installes additional packages from command-line. To install apt-cyg follow the below steps: wget rawgit.com/transcode-open/apt-cyg/master/apt-cyg install apt-cyg /bin Note: wget should be installed for downloading the apt-cyg. To Use apt-cyg for installing additional package (after following the above steps): … Read more

How to resolve configure guessing build type failure?

search for /usr/share/automake*/config.guess check the latest version of automake $ which automake $ automake –version find the appropriate automake folder in /usr/share/automake.1.11.1/config.guess replace config.guess from your build tree with /usr/share/automake.1.11.1/config.guess (The same may/is usually needed for config.sub.)

Enable native NTFS symbolic links for Cygwin

⸻⸻  Short answer  ⸻⸻ Define environment variable: CYGWIN=winsymlinks:nativestrict As pointed out by mwm you may also have to go to the settings or to run bash as Administrator. See the Notes section. ⸻⸻  Long answer  ⸻⸻ Default Cygwin symlinks are just regular files By default Cygwin creates text files as workaround for Windows symlink flaw. … Read more

pygobject-2.28.6 won’t configure: No package ‘gobject-introspection-1.0’ found, how do I resolve?

You’re probably missing the development package. The package name varies by distribution, but it’s the one containing /usr/lib/pkgconfig/gobject-introspection-1.0.pc (or /usr/lib64/pkgconfig/gobject-introspection-1.0.pc for some 64-bit distros): Fedora, CentOS, RHEL, etc.: gobject-introspection-devel Debian, Ubuntu, Mint, etc.: libgirepository1.0-dev Arch: gobject-introspection FreeBSD: gobject-introspection Cygwin: libgirepository1.0-devel msys2: mingw-w64-x86_64-gobject-introspection and/or mingw-w64-i686-gobject-introspection

cygwin sets file permission to 000

Have a read through the answers at this link: http://cygwin.1069669.n5.nabble.com/vim-and-file-permissions-on-Windows-7-td61390.html The solution there worked for me also: Edit /etc/fstab and add this line at the end of the file: none /cygdrive cygdrive binary,noacl,posix=0,user 0 0 Then close all Cygwin processes, open a new terminal and ls -l on your files again. Explanation: By default, Cygwin … Read more