Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At work (a mostly Unix development shop), I've had an OS X box for the past 1.5 years and a Linux box before that. Due to various circumstances, I'll be getting a Windows XP laptop in the next few weeks. I'm of mixed feelings about this - it's good in that, as a manager, I'm used to running a Windows install (via Parallels) for Excel, Outlook, etc., but it's bad in that I'll miss all of the Unix tools available on OS X.

So, my question to you (community wiki perhaps?) is: What sort of tools would a Unix developer find handy when using a Windows machine? I'd like to be able to do some development on the machine (Perl, mostly), and also easily remote to other (Unix) machines. Here's what I've been recommended so far:

Editor: gvim

SSH: PuTTY

share|improve this question

9 Answers

up vote 12 down vote accepted

You want cygwin -- and secondarily, for when you absolutely have to work in a CMD.EXE console, unxutils.

share|improve this answer
1  
+1 - I really like unxutils – inkedmn Sep 12 '09 at 5:39
Accepting you because of the unxutils link :) – Chris Simmons Sep 13 '09 at 17:19

Try MinGW, the Minimalist GNU for Windows. Here's a list of GNU tools they offer: http://sourceforge.net/projects/mingw/files/

This includes things like bash, sed, awk, grep, cut, and other familiar GNU tools. Perl is in there as well. I find it a good light-weight alternative to Cygwin.

share|improve this answer
This sounds very interesting... I wonder why I never heard of it before? Some of its parts go back to 2002. Definitely worth a look. – pavium Sep 12 '09 at 6:03
Hey, yeah, there's some interesting work in there. They got a boost recently because the Windows release of Git relies heavily on Msys (basically a bash console). – Yawar Sep 12 '09 at 7:32
Oh, there's finally git for windows? Excellent! – Chris Simmons Sep 13 '09 at 17:19

Cygwin

Linux-like environment for Windows making it possible to port software running on POSIX systems (such as Linux, BSD, and Unix systems) to Windows.

share|improve this answer

On windows, you will miss the great GNU/Linux/Unix tools like sed, awk, wget, grep, tr, locate, file, dd, diff,

I wouldn't recommend cygwin though, I prefer native tools.

You can find native ports of the GNU tools at http://gnuwin32.sourceforge.net/

Then you need a decent syntax highlighter, notepad is just an antique. Geany is best on Linux, and there is a windows port: http://www.geany.org/Download/Releases

There is also a windows port of The Gimp, free and opensource, offers the same and more functions as adobe photoshop (but with another interface). It's modest bit more difficult to use, though. http://gimp-win.sourceforge.net/

For a C/C++/Lisp/Ada compiler and makefiles, you need MinGW, Minimalist GNU for Windows, together with msys (a linux like console). Unlike cygwin, mingw and msys compile native win applications.

Windows doesn't have Perl installed by default. You can download a free Perl interpreter from http://www.activestate.com/

Finally, you could install CoLinux, with which you can run Linux apps. on Windows. CoLinux is hard to install, AFAIK, and you can mess up your computer if you don't know what you do.

If you have Vista Ultimate or XP, you can install SUA/WSU, Windows Services for Unix. On Vista, it's in the OS Components tab under add/remove software in the control panel On XP, you must download 300 MB from Microsoft.

share|improve this answer
Thanks. Perl I've got (I work for the company that used to own ActiveState...), but thanks for the other tips :) – Chris Simmons Sep 12 '09 at 6:58

Is your laptop good enough to run a VM? That will certainly get you the best of both worlds.

share|improve this answer
The laptop will be a brand new machine, so specs won't be a problem. I've considered a VM, but being able to save the cycles and RAM and work without virtualization is preferred. Good thought though :) – Chris Simmons Sep 12 '09 at 5:46

Cygwin gives you Unix command-line tools in a Windows environment.

share|improve this answer

You can use Cygwin or UWIN. FireCMD UNIX environment provides a UNIX like virtual environment on Windows OS with terminal emulator using UWIN developed at AT&T.

share|improve this answer

Better yet, when you install cygwin select the packages openssh, perl and emacs. Then install ssh daemon using ssh-host-config -y and follow instructions. Now you can ssh to your Windows machine from your Linux box, happily use vi or emacs and develop in Perl, run your perl code, or any other command line Windows exe, or Java or Python, etc. as long as they are console apps (vs a graphical one).

share|improve this answer

GO for Cygwin.

First install the Cygwin, which gives you a nice unix like terminal. You have lots of additional packages you can install online.

For stuffs like perl and python go for Activestate "http://www.activestate.com/activeperl" http://www.activestate.com/activepython.

There is also "http://strawberryperl.com/" free, even for commercial usage.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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