I need an offline installer with most of the utilities commonly needed. Somehow the default installer confuses me with all its package selection. I installed Cygwin but I can't find the diff utility after the installation.

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

If all you want is the UNIX command line tools I'd suggest not installing Cygwin. Cygwin wants to turn your Windows PC into a UNIX Workstation which is why it likes to install all its packages.

Have a look at GnuWin32 instead. It's Windows ports of the command line tools and nothing else. Here is the installer for the GnuWin32 diff.exe. There are offline installers for all the common tools.

(You asked for offline installers but in case you ever want one later there is a tool which will download and install everything for you.)

link|improve this answer
Interesting. This is the first I've heard of those folks. Any idea how they do their ports? Are they maintaining them themselves, or are they just providing different packaging for Cygwin or MYSYS ports? – T.E.D. Mar 19 '09 at 14:19
Ahh. From gnuwin32.sourceforge.net/compile.html it becomes clear that they are just repackaging MSYS. One wonders what they are adding to the process, other than perhaps an easier download interface than Sourceforge. – T.E.D. Mar 19 '09 at 14:26
They are not repackaging MSYS. GnuWin32 provides native ports which only rely on standard Windows libraries. The MSYS tools are require the MinGW Unix-emulation layer. The benefit of the GnuWin32 approach is that if you want diff then you can just download the diff package and nothing else. – Dave Webb Mar 19 '09 at 16:04
1  
MinGW does not have a Unix emulation layer. It's just a native port of the gcc toolchain. From the MinGW website: "MinGW provides a complete Open Source programming tool set which is suitable for the development of native MS-Windows applications, and which do not depend on any 3rd-party C-Runtime DLLs." – Neil Williams Jul 2 '09 at 20:27
feedback

Here are instructions assuming you want to install Cygwin on a computer with no Internet connection. I assume that you have access to another computer with an Internet connection. Start on the connected computer:

  • Get the Cygwin install program ("setup.exe"). Direct download URL.

  • When the setup asks "Choose a download source", choose Download Without Installing

  • Go through the rest of the setup (choose download directory, mirrors, software packages you want, etc)

  • Now you have a Cygwin repository right there on your hard disk. Copy this directory, along with the "setup.exe" program, over to your target computer (it does not need to be on a network).

  • On the target computer, run "setup.exe"

  • When the setup asks "Choose a download source", choose Install From Local Directory

  • Complete setup as usual. No Internet access is required.

link|improve this answer
2  
Christ, cheers for this. Bloody obvious when you think about it but I also remember googling frantically for some sort of offline installer before. – Gavin Gilmour Jan 10 '10 at 13:59
feedback

Not a direct answer to your question, but you can get the most commonly used utilities from http://www.mingw.org/ without having to jump through the hoops with that horrible Cygwin installer.

Here is a slightly more informative link http://sourceforge.net/apps/mediawiki/cobcurses/index.php?title=Install-MSYS.

link|improve this answer
I have always preferred MinGW myself, all the functionality of Cygwin without the bloat. ;) – Ian Kemp Mar 19 '09 at 12:31
Also, no GPL-infecting DLL for compiled code. MinGW is definitely the source for those in the know. :-) – T.E.D. Mar 19 '09 at 14:29
feedback

Perhaps this description helps you in your task.

http://www.cygwin.com/ml/cygwin/2003-09/msg00041.html

link|improve this answer
feedback

There is another solution to creating an offline Cygwin installer, which is using 'pmcyg' (http://www.sourceforge.net/projects/pmcyg). If you give pmcyg a list of Cygwin packages you'd like to have available, it will automatically download all of them, their dependencies, and the setup.exe into a folder that you can then burn onto a cdrom.

link|improve this answer
feedback

I'm not a big fan of Cygwin. It is good if you have some Unix code that requires a full POSIX system, I suppose. Even then, using it renders your programs GPL (due to the GPLed DLL), unless you pay Red Hat for a different license.

Most people should be using MinGW (and MSYS) instead. This gives you the Unix shell and utilities (even compilers, if you want them) without the purposely infectious DLL. Most of the folks using GNU compilers on Windows are using MinGW (although some don't realise it).

Just as importantly for your purposes, you can download the parts separately, rather than use the re-downloading installer.

The SourceForge download page is here. I'd suggest starting with the MSYS Base System package, which will give you the coreutils, Bash, make, tar, etc. If there's other stuff you need, you can pick and choose from the list of packages.

link|improve this answer
1  
"using it renders your programs GPL" Not necessarily: you can use the g++ flag --no-cygwin, then you are linked to the MinGW DLL's. So, you can have the best of both worlds. – Colin Jun 12 '09 at 6:17
feedback

protected by Dori Apr 24 '11 at 22:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.