vote up 7 vote down star
3

On my servers I run everything on Linux/ Apache, but for offline preparation before upload of the projects I'm using Windows (Vista) with a local Apache/ WAMP, PHP, Python, GD_image installation and so on. My question, would it be much easier in terms of setting up a good environment if I were to use Linux, e.g. Ubuntu distribution, as development OS for these things? Would you know some pros and cons when it comes to Windows vs Linux in terms of web development?

(As I'm using mostly web apps these days, switching the OS might be less of a problem. I would need a good replacement for my image editor, though, as I prefer Corel PhotoPaint and PSP4 over Gimp, last time I tried.)

flag

71% accept rate

9 Answers

vote up 25 vote down check

Disclaimer: I use Ubuntu for development and Ubuntu (server) for production servers. I might be a bit biased but it seems like you're looking for somebody who's actually gone down the same path as you.

That out the way, I love using Linux for development. Most of the tools I required are the same: Eclipse for PHP/Python and a souped-up text editor (gedit in my case now, was Dreamweaver's text mode) for HTML/etc. Under Windows I was limited to FTP* which stunted my workflow a little. Under Ubuntu, I can just mount the working directory and work straight from it, or use a version control app like svn, git or bzr.

Lets get one thing straight: you will spend more time on the command line but I don't see that as a neccessarily bad thing. I have short alias commands that do a million times more than five minutes clicking around several Windows windows could accomplish. If you have Linux servers, chances are you do a fair portion of your administration over SSH already, so it shouldn't be too much more of a jump.

But even just on the desktop, there is a modest learning curve. The initial annoyances mainly come from finding the "right" applications. There is a lot of choice and very rarely do you find a direct mapping to a Windows-only app. This just takes some getting over. You will get used to something provided it's functional and you actually use it. That's technology for you.

For stuff you just can't drop (Adobe Fireworks and Photoshop for me) you can use Wine to "emulate" Windows (though it's not really emulation) or use a virtual machine like VirtualBox to run a real copy of Windows in the background. I only need these apps for 10-30 minutes at a time so I just fire up a TinyXP image in VirtualBox. Your mileage will vary with both alternatives.

Pros of Linux:

  • Free (in both ways)
  • Plenty of dev apps
  • You can make it mirror your production environment (cutting out nasty surprises)
  • Generally well supported with updates
  • Looks gorgeous if you put enough time into using the right effects =)
  • It makes you much cooler. Fact.

Pros of Windows:

  • You've already got it so you're not going to have to spend a week reacclimatising
  • You've already put money into it
  • Upgrades go a very good job of clearing out your wallet of all that troublesome cash.

Ultimately, it's really up to your personal work-flow and tastes. Both systems are more than capable or providing a decent work flow.

*I wasn't limited to FTP as such but getting a svn (or other) server set up back then was, I'm ashamed to say, beyond me. But Windows would not support my current configuration which relies on bzr+ssh... So perhaps it is Limited. I'm rambling.

link|flag
+1 for "It makes you much cooler. Fact.". In addition when I have to do dev on windows box I always find myself really missing all the built in command line stuff on linux, e.g. grep, perl, awk, find – MrWiggles Jan 16 '09 at 14:07
Mr. Wiggles, that's what msys (mingw.org) is for. – T.E.D. Jan 16 '09 at 15:18
"Plenty of dev apps" -> yeah, just fire up synaptic and start browsing. It's all there. – Svante Jan 16 '09 at 15:24
vote up 0 vote down

i dont' know if I need to start a new question. I have not found my answer yet so am feeling this is the most appropriate locations (sorry sysadmin).

I am trying to setup my home Development Environment

a) Server Ferdora 11 with SVN on Apache b) Clients Windows Vista Home Basic. c) IDE Visual Studio 2008 with AnkhSVN

I got the server ready, but am unable to connect use Visual Studio to communicate to SVN Server. I could browse the the server, i can use the web browser to access the content.

I have tried all possible please help me.

Thanks

link|flag
vote up 0 vote down

Linux of course. With only a few commands you can have a complete development rig. Apache, MySQL, Python, Perl, your favorite IDE's, in what? 10 minutes? You don't have to go to www.x.com to get x and then install, repeat... Also, Linux is a install and forget OS this days. I haven't have the need of touching my system since I had installed it.

link|flag
vote up 1 vote down

My question, would it be much easier in terms of setting up a good environment if I were to use Linux, e.g. Ubuntu distribution, as development OS for these things? Would you know some pros and cons when it comes to Windows vs Linux in terms of web development?

Seeing as how your Windows environment is already set up, I don't see how it would be easier setting one up in Linux. However, there are slight differences between Windows and Linux servers, and although I develop using XAMPP I prefer to test on a Linux setup for compatibility.

(As I'm using mostly web apps these days, switching the OS might be less of a problem. I would need a good replacement for my image editor, though, as I prefer Corel PhotoPaint and PSP4 over Gimp, last time I tried.)

You might try Krita - it does a reasonable job of bringing image manipulation to the masses. I have moved from PSP/Paint.Net to Inkscape - while the learning curve is steep, I haven't looked back - and it runs natively on both Windows and Linux. :) Excellent tutorials via screencast are available from heathenx - helped me tremendously.

link|flag
vote up 1 vote down

Our company is playing with PHP in WIMP (Windows, IIS, MS-SQL & PHP). I have noticed that there are times where PHP behaves differently on WIMP vs LAMP. (The most obvious things involve pathing but I have seen some issues with php.ini, but that may be my greenness with PHP.)

I have also played with WAMP (Windows, Apache, MySQL & PHP) and that seams closer to LAMP, but still has some differences in behavior.

Since the we are planning on running on WIMP, it really isn't a problem, but if I was going to try to develop in WIMP and deploy on LAMP, would think twice.

I would run LAMP on a VM on Vista (or LAMP on a spare computer) and use my Windows tools to build the site but run it on the real thing.

link|flag
vote up 0 vote down

I don't notice much difference.

If you use a lot of "bash" scripts then its easier if you can use them natively in your dev environment (i.e. LInux) likewise if you use a lot of OS specific "system." calls in your code. But this is not normally the case for web development.

One thing I have noticed though is that some open source tools (I am thinking of eclipse and vim particulary) have better implementations for Windows than for Linux -- go figure.

link|flag
vote up 0 vote down

The only difference I can think of is that when something hangs in a linux gui (gnome, but I think it applies to all) it usually just hangs inside the window, and I have never experienced the general "locked up" feeling you can get on windows.

In all fairness to Windows XP, you do usually get out of it when you finally manage to kill the processes.

link|flag
vote up 7 vote down

As always, your production, testing and development environments should be identical or as similar as possible to get consistent results.

link|flag
vote up 0 vote down

I don't think you will notice any difference for development. Development should be just fine as you are using the same stack (minus the OS of course).

link|flag

Your Answer

Get an OpenID
or

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