Slashdot Mirror


Linux Can't Kill Windows

nberardi writes "Infoworld is running an article in which the author claims 'Linux is established and has a niche that, as various pendulums swing, will grow and shrink. Show me charts and stats and benchmarks that prove Linux superior to Windows in every measure and I'll not argue with you. But no matter how much money and dedication is poured into Linux, it will never put a dent in Windows' mind share or market share because Linux is an operating system, a way -- and probably the best way -- to make system hardware do what it's told. But you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it.'"

1,054 comments

  1. I think he's right by DenDave · · Score: 2, Insightful

    In the sense that GNU/Linux is not a platform.

    --
    -if at first you don't succeed, stay the heck away from paragliding.
    1. Re:I think he's right by Anonymous Coward · · Score: 0, Informative

      No...GNU/Linux *is* a platform, Linux is just a kernel.

    2. Re:I think he's right by DenDave · · Score: 3, Insightful

      If GNU/Linux was a platform, in the sense that MacOSX or Windows 2003 was a platform then how come you need to recompile software depending on your distro or hardware ?

      --
      -if at first you don't succeed, stay the heck away from paragliding.
    3. Re:I think he's right by Anonymous Coward · · Score: 0

      If you're a software vendor and you're actually doing that, the reason for it is simply that you don't know what you're doing. Perhaps you should consider employing a developer who understand UNIX and Linux?

    4. Re:I think he's right by eturro · · Score: 5, Insightful

      Many GNU/Linux users don't compile their own binaries anymore. There are almost always precompiled binaries for GNU/Linux, that mainly depend on which hardware architecture you use (e.g. SPARC, x86, PPC). This would happen with Windows (x86) and Mac OS X (PPC) also if they supported multiple hardware platforms! It's just that GNU/Linux allows you to choose your own architecture if you so wish. It's an advantage.

    5. Re:I think he's right by Dr.+Evil · · Score: 5, Insightful

      Yeah, a moving platform. With countless widget sets, multiple clipboards, different directory structures, an infinite number of combinations and permutations of shared libraries, and just as many sources of outdated, incorrect, misleading or utterly superb documentation, and crap vendors like Redhat which drop version support in a third the time of Microsoft.

      One place where GNU/Linux is relatively stable is in POSIX and a vague semblence of commonly accepted extensions to the standard. That makes it a nice platform for server software, but does nothing on the desktop.

      Windows was never an OS. It contains an OS, they changed OSes in the product lifetime, but the product has always been a desktop environment and a consistent, well documented, and long-supported API.

    6. Re:I think he's right by ssj_195 · · Score: 5, Interesting
      Way back last year, I installed UT04 on my Mandrake 10 (lol) Linux machine (finding the installer hidden away on the first CD was an unexpected delight; finding that it was just as slick as the Windows installer, even more so). I installed it on its own partition, as was the style at the time.

      Flash forward to now: I have worked my way through the following distros, by doing a full wipe-and-reinstall each time:

      Mandrake 10 (as mentioned);

      Mandrake 10.1;

      Gentoo(lol)

      Each time, as soon as the nVidia binary driver was installed, UT04 would start and run without a single tweak being made to the UT04 install.

      The lesson to learn is this: although the majority of open-source Linux software is not self-contained (and this is by conscious design) and has dependencies that need to be tracked-down and installed first, there is no reason at all why a company can't just package up everything it needs in one big self-contained lump, eliminating the need for dependencies or the need to run on a specific distro entirely. As for the comment that you need to recompile for different hardware: I have no idea what you're talking about. Clearly, if you have a x86 app, it will need to be re-compiled to run at full speed on a PPC system - a difficulty not encountered in the Windows world for the sole reason that Windows is only capable of running on x86, and similary for MacOSX.

      I suspect I've just been feeding a troll, but oh well - who cares? :)

    7. Re:I think he's right by Anonymous Coward · · Score: 0

      Okay, I _guess_ that explains why my old SuSE RPMs work fine on MDK10.1.
      Not saying that there are no problems though, but none that can't be fixed. Look up "DLL hell" on google and tell me Windows has no such problems.
      As far as "recompiling depending on hardware" goes, well, you're just gonna have to figure that one out on your own.

    8. Re:I think he's right by ThJ · · Score: 1, Funny

      What's this DLL hell everyone speaks of? I know what it would implicate, but I've never in my life had a DLL problem such as that in Windows.

    9. Re:I think he's right by blane.bramble · · Score: 2, Informative

      Windows applications usually have two choices when using shared libraries - use a system library and hope that in the event of it being upgraded the new version doesn't break apps that were coded to an older one, or install a private copy just for it's own use (thereby removing the point of a shared library). Add to this the fact that older version of windows cannot load two DLL's or EXE's with the same registered name, and you have the potential for many copies of potentially clashing DLL's and apps that can't be run at the same time because they need different versions of the same DLL.

    10. Re:I think he's right by ISoldMyLowIdOnEbay · · Score: 2, Insightful

      You've obviously never done remote desktop application maintenance then... I remember a few thousand call centre desktops being killed (BSOD) because someone used the wrong version of a system DLL that came with an application install. Fair enough, they should have tested properly, but differences between DLL version 4.0.3.1924 and 4.1.0.2001 (or whatever) do have severe consequences on occasion! This was NT though, to be fair.

    11. Re:I think he's right by nurd68 · · Score: 2, Informative

      I did have one problem with commercial binaries for linux: basically, SimCity 3000 has issues running on newer kernels because of the dynamic linker. Basically, it segfaults. A guick google revealed the solution:
      'LD_ASSUME_KERNEL=2.2.4 /usr/local/games/SC3U/sc3u'
      And it works.

      This is no worse than the problems I've had running old (circa 1998) games on Windows XP (such as the Windows port of the old DOS game XCOM. Which, if you like XCOM, check out UFO Aftermatch. A completely new game, but really has that XCOM feel to it.)

    12. Re:I think he's right by TheRaven64 · · Score: 5, Insightful
      Games are a special case in that they have very few dependencies. Usually, a game will depend on OpenGL, OpenAL, and some form of input, perhaps SDL. SDL can be statically linked - people don't notice adding a few MB to the executable size when it is accompanied by a GB or two of data.

      General purpose programs are different. Look at the standard libraries on OS X or Windows. You have a complete windowing toolkit or two (Win32 / Avalon, Carbon / Cocoa), a media plaing framework (DirectShow, QuickTime), an HTML rendering engine (MSHTML, WebKit) and a whole host of other things which a guaranteed to be there. You can build your app expecting them to be there.

      On Linux (or *BSD for that matter), alternatives to most of these things exist. In some cases, several alternatives exist. The problem is that you can't guarantee that they will be there. You can statically link everything, but then you have to update your entire app whenever small updates to dependant libraries are released. Alternatively you can just release the app dynamically linked, and hope that people have all of the required libraries (where you expect to find them), and hope that the distribution will package your app in such a way that it will work. The only way to really make sure it will work it to package it complete with dependencies for every distribution you plan on supporting, which generally limits things to Red Hat and maybe SuSE, even though the code would work with no modifications on a large number of other platforms.

      --
      I am TheRaven on Soylent News
    13. Re:I think he's right by ubernostrum · · Score: 0, Flamebait

      Yeah, a moving platform. With countless widget sets, multiple clipboards, different directory structures, an infinite number of combinations and permutations of shared libraries, and just as many sources of outdated, incorrect, misleading or utterly superb documentation, and crap vendors like Redhat which drop version support in a third the time of Microsoft.

      This is as opposed to the superb stability and compatibility one gets between OS versions from Redmond. Take Windows XP and Windows XP Service Pack 2, for example; anything which runs on one runs on the other, right?

    14. Re:I think he's right by Isca · · Score: 1
      95% of everything does, and MS is in a position where at least half of the programs that didn't make the leap had the companies that designed them come out with updates that allowed them to work with it.

      Unfortunetly, the computer is a mass produced commodity now, and the standard that won is the VHS system, not the betamax or any of the better formats that came afterwords.

    15. Re:I think he's right by ssj_195 · · Score: 1

      That's actually a very good point, and one I had not considered (fuck knows why you're -1, overated!). I wonder if the WINE libs would be of use here for Windows developers wishing to port to Linux? Is this very standardised and up to the task of providing a rich and dependable infrastructure for most apps, do you think?

    16. Re:I think he's right by Kjella · · Score: 4, Insightful

      Yeah, a moving platform. With countless widget sets, multiple clipboards, different directory structures, an infinite number of combinations and permutations of shared libraries, and just as many sources of outdated, incorrect, misleading or utterly superb documentation, and crap vendors like Redhat which drop version support in a third the time of Microsoft.

      To take the points in order:

      countless widget sets
      A few major widget sets. If you're going to include every kit, you might as well include the buttons here in Opera, which are completely non-standard as far as Windows is concerned.

      multiple clipboards
      Yes, annoying and stupid.

      different directory structures, an infinite number of combinations and permutations of shared libraries
      Uusually well managed by your distribution. A cross-distro way to create a standalone installer would be nice though, LSB doesn't quite cut it.

      just as many sources of outdated, incorrect, misleading or utterly superb documentation
      Most projects have a homepage. That is the source of the most up-to-date information. Though most of the time, the docs in the package is enough.

      crap vendors like Redhat which drop version support in a third the time of Microsoft
      And Debian gets scolded each time they're mentioned for actually supporting something for a while.

      Windows was never an OS. It contains an OS, they changed OSes in the product lifetime, but the product has always been a desktop environment and a consistent, well documented, and long-supported API.

      Linux does that. But you should really mention a long-supported ABI. Linux does definately not have that.

      In short, I see all of this as signs that Linux is moving too fast for people to consolidate and work out standards. Being more bazaar than cathedral, that is natural. But that is like a brake on a streamroller already in motion.

      We're in a transition period where people are held back by old systems, but seek cross-platform compatibility on new systems. It's like watching pressure build for a switchover. Just because there's been no mass exodus you still see them untangle themselves from Windows strangleholds.

      --
      Live today, because you never know what tomorrow brings
    17. Re:I think he's right by TheRaven64 · · Score: 1

      The problem with WineLib apps on *NIX is the same as that of Qt apps on OS X. They work, don't look look or behave like native apps (or worse, they look like native apps but don't behave like them). This means that (generally speaking) they will be badly received, discouraging companies from putting the effort into a full port.

      --
      I am TheRaven on Soylent News
    18. Re:I think he's right by thinkfat · · Score: 5, Interesting

      Yeah, 'cause there's so many of them :-)

      Debian would be a platform, or Novell/SUSE, or RedHat - if they finally committed themselves to being one.

      A platform is a platform only if its stable, and I don't mean "stable" as in "does not crash". I mean "stable" as in "does not change significantly every 6 months". So Debian would be an ideal choice.

      However, Debian itself has zero commercial drive. I wonder what drives Debian at all, and other people wonder, too, given the admirable rise of Ubuntu.

      But people want pretty software, and Debian stable features GNOME and a stone-aged KDE. And while GNOME on Debian seems to be more advanced than KDE, forgive me, I would not chose it for fancy software. It looks so painfully dull :-(

      KDE on the other hand looks nice and lively, but is it a platform? I wonder.

      Obviously there has to be a balance between the drive forward, the wish to leave behind all that old cruft (fsck compatibility!) and the conservative approach to not chance anything to not break compatibility.

      Still, what drives the PC market is cool software, not cool licensing.

      Just to give you an example: mplayer is technically cool. But its complexity scares people away. It's only cool because it's free. You won't be able to sell it to anybody, because as a software _product_ it sucks. badly. Even with gmplayer.

      Or take GIMP. It's cool 'cause it's free. But it's just an aggregation of image manipulation tools. It's not a _product_.

      There is this small gap between a program and a product that Open Source software seems to be unable to bridge, this final, annoying, painful step of really _finishing_ it so that it _could_ be sold.

      My conclusion: Linux needs commercial(-grade) software. Firefox is not enough. Instead of scaring commercial software vendors away with stupid fundamentalism we should be fair with them.

    19. Re:I think he's right by hacker · · Score: 4, Insightful
      "Yeah, a moving platform. With countless widget sets, multiple clipboards, different directory structures, an infinite number of combinations and permutations of shared libraries, and just as many sources of outdated, incorrect, misleading or utterly superb documentation, and crap vendors like Redhat which drop version support in a third the time of Microsoft."

      Many of us call that CHOICE .

      I can pick the Linux distribution that best fits my needs, be they toolkit-driven, tool-driven, UI driven or otherwise.

      With Windows, you get... well, Windows. You have to shim other things onto it to get it to be useful. For example, I don't use icons, toolbars, window frames or titlebars. Show me how I can configure Windows to provide that interface, in an easy way... you can't. Not without 10 different third-party products.

      Its all about choice.

    20. Re:I think he's right by Anonymous Coward · · Score: 1, Informative

      Look up "DLL hell" on google and tell me Windows has no such problems.

      I work at a large college where I admin Windows machines for a living and I have never had any of these "DLL hell" problems that people speak of. This is not a flame or a troll, just my experience.

      I would love it if we could switch all of our machines over to Linux (or even just half of them!). But to be honest the only problem that our Win2K boxes ever give us comes in the form of spyware, adware, etc. In my experience windows is not nearly as bad as so many slashdotters make it out to be.

    21. Re:I think he's right by Anonymous Coward · · Score: 2, Insightful
      Hey, I personally agree with you, but you have to admit it's exaggerated on both sides. I don't think Windows is a bad OS at all in terms of software, and Microsoft have shown that they're very serious about security nowadays.

      I use GNU/Linux for philosophical reasons (and I love using it as a development platform), it's not a matter of using whatever is "superior" for me. Don't get me wrong, I have no problem with whatever you choose to use, I'm just exercising the freedom of choice and enjoying it all the way. :)

      /Parent AC poster

    22. Re:I think he's right by DenDave · · Score: 1, Insightful

      Don't get me wrong, I am linux user myself, my post merely said I agree with the author on that point. I do see it as an advantage to be able to "roll your own" and optimize, however I think that it is tricky to say that the combination of a linux kernel and GNU constitutes a platform. Not a single distro out there is just that. There is always a mish mash of other things, which may or may not work like a charm, my point is just that making an application work on system X doesn't mean it will work on system Y. This in contrary to platforms like MacOSX and Windows where the application will (most likely) work as expected on different installations of the platform.

      --
      -if at first you don't succeed, stay the heck away from paragliding.
    23. Re:I think he's right by EnderWiggnz · · Score: 1

      hand compile?

      surely, you mean "compile from source"....

      i know of very, very very few people who actually "hand compile"... and even then, it would only be gcc...

      --
      ... hi bingo ...
    24. Re:I think he's right by Anonymous Coward · · Score: 0

      Okay...so Windows should be compared to Gnome or KDE or my favorite Fluxbox...hmmm...interesting point of view.

      So where do the flaws in the Windows backend OS come in? Does that detract from "Windows GUI" since you can't get one without the other? You can kill Explorer.exe (Windows GUI) and use something like LiteStep but you can't kill Windows OS and still get Windows GUI.

      I still like your point...its just that it is hard to separate them out...now if windows were to release a version that ran on a Linux kernel then we'd be talking....or even better if someone like Apple put their gui on opensource...oh wait...Apple did that already.

      I suppose such a move would be MS admitting that the OS part wasn't all that great and that their money comes in at the GUI level...and we all know that people don't like to admit their mistakes.

    25. Re:I think he's right by Anonymous Coward · · Score: 1, Funny

      The 'stupid fundamentalism' being perpetuated by those 'ignorant crazies' whose primary drive is keep Free Software Free?

      Those near-sighted bastards.....

    26. Re:I think he's right by Rudeboy777 · · Score: 1

      ... and there is nothing "superior" about Sony's overpriced, closed-proprietary-standards based way of business.

      --

      From hell's heart I fstab at /dev/hdc

    27. Re:I think he's right by barbarac · · Score: 2, Insightful

      Completely right. As much as I like the idea of open source software, the truth is that MS delivers a suite of products that have massive market penetration and integrate well.

      --
      Rob Barac
      www.intersplice.com.au/blog
      www.cafegeek.com
      www.marketingroots.net
    28. Re:I think he's right by Rudeboy777 · · Score: 2, Interesting

      Well, he was doing OK until ending it off with "long supported API". Some VB6 developers might disagree.

      --

      From hell's heart I fstab at /dev/hdc

    29. Re:I think he's right by OnlineAlias · · Score: 1

      Win2k+ won't allow an application to overwrite a DLL. It will detect it and restore it. NT3.5x and 4 would, but the OS would usually crash right then and there. The real culprits were the 3.x/95/98 series...those *were* DLL problems waiting to happen. Incidentally, I'm on a Suse 9.2 pro laptop right now and IMHO, it is one of the *best* competitors to Windows I have yet to see out of OSS. Very,very good....

    30. Re:I think he's right by Anonymous Coward · · Score: 0

      But be careful, just because Linux can't kill Windows, does not mean Windows won't kill Linux. Then what choice do you have? Pay up, shut up and sit down.

    31. Re:I think he's right by n0-0p · · Score: 1

      Generally you'll just get mysterious application failures due to version issues or (if you're lucky) GetProcAddress failures. It's not something you would see unless you're installing and removing software often, or maintaining a moderate to large number of systems.

      Windows XP added the file protection service to basically resolve this for system libraries. It used to be a really serious problem in general, but now it's usually only an issue with shared third party libraries. Of course, a malicious or really dumb application can still kill the file protection too.

    32. Re:I think he's right by Jondaley · · Score: 1

      Yeah, like Visual Studio, service pack 6. Overwrote some files in the system directory, and messed things up last week. I had to find them on another system, and re-install the right ones by hand.

    33. Re:I think he's right by iamacat · · Score: 1

      No, just a development environment. KDE/Linux is a platform, just the one that tries too hard to look like Windows and is more expensive for commercial developers.

    34. Re:I think he's right by MPHellwig · · Score: 1

      It was a design choice to build in the gui in the kernel and to integrate the window manager that close that there is no real abstraction.
      Just as that it is a choice to not do it.

      But that choice didn't prevend them from becoming this big, so perhaps it wasn't that wrong after all.

      BTW my favourite is xfce4.

    35. Re:I think he's right by runderwo · · Score: 1
      Linux does that. But you should really mention a long-supported ABI. Linux does definately not have that.
      Linux most certainly does have a long-supported, stable ABI. Perhaps you were thinking about the C++ library ABI? That has nothing to do with Linux, it's GNU symbol mangling changes to become link-compatible with objects from other C++ compilers. If they hadn't made the changes, then people would bitch that they are incompatible with other compilers' output.
    36. Re:I think he's right by Anonymous Coward · · Score: 0

      To be fair, he never explicitly stated that betamax came after VHS, only that beter formats did.

      ([]'s used to break up subjects)

      "not the [betamax] or any of the [better formats that came afterwords]."

      sarcasm: Check your grammer next time, noober /sarcasm

    37. Re:I think he's right by Anonymous Coward · · Score: 0

      But choice is, in my opinion, what's holding GNU/Linux back from becoming as successful as it potentially could be. You can't have all this choice and consolidation too - the two are mutually exclusive.

      If GNU/Linux is to significantly gain market share, it needs ONE file system structure, ONE (in my opinion) desktop - or at least a *main* desktop environment, ONE toolkit and a much, much longer release cycle.

      The distro's should all work together and agree on ways of implementing things or, better yet, imo, work together on just ONE distro.

    38. Re:I think he's right by Baikala · · Score: 1

      Let's wait for some mayor aplications support both AMD64 and Intel 64 (itanium 2 or the new Pentium EE) and then talk ok?

      --
      16,777,216 comments ought to be enough for any forum!
    39. Re:I think he's right by omb · · Score: 1
      No he isnt

      You can pick linux distros from the very stable to the bleeding edge; and for the corporate market, small, medium and large that, an office suite and a small number of apps, on a per corporate basis is all that is needed. They anyway spend more effort keeping systems clean and standard than adding esoteric apps.

      For the tech savy, and students Linux, say Fedora or SuSE have huge advantages, and these people dont need DiDio to tell them about TCO

      For grandma, and the un-sophisticated home user they already own Windows 98 or get a lowish cost OEM version with their hardware, and are thus a nil or small revenue stream for M$.

      So what Linux has done is sink the upgrade ratchet, which only ever worked in the developed west and in corporations anyway

      Both in Asia, China, India and Sout America M$ have huge problems, and anyone who thins that Limited Edition is going to solve that is nuts.

      In Europe, which is a bigger market than the US, M$ is equally un-popular mostly because of the closed formats and format incompatipilities in Office, which is particularly serious in the context of National Public Archives.

      Even in corporate america, most CIOs are smart enough to do a Linux study while negotiating with M$.

      Finally, as a Consultant, and Software developer I have enough, particularly on the tools side. I will never have to use M$ unstable, in-secure bug and bloat-ware ever again; and I often do that in the context of interworking with 100% M$ shops and have smiled benignly while I have been able to continue working as the latest mal-ware brought the rest of the organization to a halt.

      Use Linux I say to tech support who offer to help me re-build/disinfect my laptop.

    40. Re:I think he's right by monkeyGrease · · Score: 2, Insightful

      There is this small gap between a program and a product that Open Source software seems to be unable to bridge, this final, annoying, painful step of really _finishing_ it so that it _could_ be sold. That small gap is the last 10%. But that 10% is the infamous part of the 90/10 rule.

    41. Re:I think he's right by Pieroxy · · Score: 1

      That's well and good, but you're forgetting a major advantage of statically linking stuff: Compatibility.

      If you always depend on dynamic linking, the user may very well have all that you need but in slightly different versions that you used for dev/test. Potential incompatibilities and bugs may arise from such a situation.

      And if anything else, experience has shown this is a bug-prone situation.

      If you link statically your needed libs, you can make sure:
      a. That they are there
      b. That they work, because you have tested them.

    42. Re:I think he's right by mr_z_beeblebrox · · Score: 1

      but the product has always been a desktop environment

      That is a very educated statement. Yes, technically Windows is an OS but that is not what users are buying, they buy the desktop.

      and a consistent, well documented, and long-supported API.

      Though the first half of the sentence was great and showed a good understanding of business and marketing and buyer motivations etc... The above statement shows that you are definitely not a Windows programmer. The API consistently changes, sometimes through the automatic update. I have never walked in and found a Linux distro that 'suddenly' won't run a key app because an automatic update changed the API. Windows does not do that as often anymore (well XPSP2 did, but at least they told you it would) but they still do and their licensing allows it.

    43. Re:I think he's right by ThJ · · Score: 1

      Well. Yes. I know that. DLLs in Windows have never been shared libraries in the Linux way. There are a set of DLLs in the system directory and it's generally left alone, or perhaps upgraded to a newer version by an application that needs it. More frequently, however, DLLs are used as plug-in modules for developers. They're just put in the application directory to provide some functionality for a single application. It's not how DLLs were supposed to be, perhaps, but I've only rarely had problems with it.

    44. Re:I think he's right by vmaxxxed · · Score: 2, Insightful

      Hello, Im sorry to disagree.

      For a minority of application developers and other more esoteric developers, the ability to run the same OS against different platforms is very important, and it simplifies things.

      But, here, we are comparing linux, not from the professional developer point of view, but from the point of view of the 99% other computer users in regular businesses and at home. What is the advantage for them ?

      I can agree with the article that, given the current advancements in computer technology, regular users dont need to fiddle with Solaris, Linux or whatever to get any important return on investment. For them, design stability, consistency and suppport are way more important. Windows gives them that.

      From this point of view, an OS that wants to be so universal will never be the best on any single platform. Therefore, Linux will never be better than windows, if we are talking about Inteles alone.

      -Ale

    45. Re:I think he's right by ThJ · · Score: 1

      Special cases, needs and tasks always cause unforseen problems. Using the system exactly like the deveopers intended it usually makes it more reliable. Tweaking it will often break it. Well behaved applications do version checking.

    46. Re:I think he's right by cortana · · Score: 1

      UT2004 is the best commercial Linux program I've come across in this regard.

      Most of the ones I have have broken in the years since their release because they statically linked against Glibc. While this works in theory, when the binary is run on a system with a newer Glibc it will segfault as soon as the program tries to do something involving loading a dynamic module (eg, using networking functions).

      From Static Linking considered harmful:

      all kinds of features in the libc (locale (through iconv), NSS, IDN, ...) require dynamic linking to load the appropriate external code. We have very limited support for doing this in statically linked code. But it requires that the dynamically loaded modules available at runtime must come from the same glibc version as the code linked into the application. And it is completely unsupported to dynamically load DSOs this way which are not part of glibc.

      This is the reason that, Civ: Call To Power segfaults when I try to play a network game.

      So, if you are developing/porting a closed source on/to Linux, please please please be careful about which libs you link to statically, and which you link to dynamically. You should always link dynamically to Glibc.

      Whether you build other libraries into your binary should depend on how stable they are, and how likely they are to exist in ten years time. Backwards-compatible versions of libs like Glib or GTK will be around forever; the Sonames of their most recent versions (2.6/2.8) are still at 2.0 and show no sign of changing soon; and the older version of the libraries, with Soname 1.2, are still provided by every distribution.

      Users of UT2004, Doom 3, HLDS and every other closed source program written with C++ have something else to worry about: the upcoming GCC 4.0 ABI transition. GCC 4.0 changes the C++ ABI from version 102 to version 1002; once your distro recompiles with the new ABI, any program dynamically linking to a C++ library will stop working.

      UT2004/Doom 3 are certainly safe, since they are actively maintained; but no one will recompile Civ CTP, HLDS and other unmaintained programs. :(

    47. Re:I think he's right by ThJ · · Score: 1

      Yeah. DLL protection. I'm well aware. It's a nice feature. Do you happen to know about a Linux distribution that lets me actually do system configuration without having to use the command line? It seems that not even Ubuntu lets you edit how Grub or LILO boots with a GUI. Whenever I test a supposedly user friendly Linux distribution, I always try to do it like a Windows user first. "Okay. I want to remove a device driver. Now let's go to the control panel... A listing of /proc/pci, and a listing of loaded modules. Nonono! I just wanna remove the device. Okay. A Windows user would definitely become confused." "Now to plug in my webcam... um... it isn't being autodetected, and it's not asking me to install a driver. Okay. My sister couldn't use this." I'll be impressed if someone has designed a solution that just works that smoothly. Microsoft and Apple are just pretty hard to beat in that area...

    48. Re:I think he's right by Anonymous Coward · · Score: 1, Funny

      Yes Linux IS all about choice. . . unless you choose something other than what the "masses" use. Then you are ridiculed for your choice :)

      "What, you use fedora core. . . why are you using such a dumb and bloated distro? You must be some noob moron who can't think for themselves"

      "What, you use GENTOO!!! Man I guess you must be a glutton for punishment and some kind of stupid anal retentive nut job who likes to do everything in the most difficult and painful manner possible"

      "What, you prefer vi over nano!!! Man what are you, some kind of idiot who's a glutton for pain!!??!!??"

    49. Re:I think he's right by coolGuyZak · · Score: 1

      This be nitpicking, but OSX only runs on PPC... not x86.

    50. Re:I think he's right by ThJ · · Score: 0, Troll

      I don't even recall having this problem with Windows 3.11. Windows has just worked well for me in general, heck even Windows 95 was stable.

    51. Re:I think he's right by hunterx11 · · Score: 5, Insightful

      Even with a restricted set of architectures you don't really need to compile. MacOS pretty successfully supported 68k and PPC at the same time with fat binaries. I think the difference is that most users neither knew nor cared what that meant, and Apple made it so that for the most part they didn't have to.

      --
      English is easier said than done.
    52. Re:I think he's right by Zeinfeld · · Score: 4, Interesting
      Win2k+ won't allow an application to overwrite a DLL. It will detect it and restore it. NT3.5x and 4 would, but the OS would usually crash right then and there.

      DLL hell is not unique to either Linux or Windows. It has been a serious problem from the moment the first person updated a shared library on the first system to support them.

      The logical symbols mechanism in VMS allowed many problems to be avoided, instead of loading a filename the program would load a logical symbol. It was easy to run a system with different versions of the same shared library in use simultaneously. UNIX and Windows never used symbols in quite the same way.

      I think that folk need to look at what they get from a shared library. At one time it made great sense to save memory by having multiple processes share an in memor image of an executable. It makes particular sense if you are running something like Apache where child processes are being spawned off from the parent and share resources with it. I don't think it makes a lot of sense as a general approach when memory cost $50 per gigabyte.

      We could probably do much better than shared memory if we went back to static libraries and instead used more intelligent linker technology. When I link to stdio I pull in maybe 500K of code and use at most 40% of the code paths. When I link to more recent libraries the library is much larger and the fraction I use much, much less. A shared library is an all or nothing affair, every part of the library has to be loaded in case another image might need it. Even if the code page is never touched the memory has to be allocated.

      As for the question of user interfaces, I think that the way they are designed today is worse than sub-optimal. I would prefer to go back to an architecture similar to the one that the NextStation had. Instead of having the program implement the user interface as code it should send a description of the user interface to the windows manager and have it perform all the necessary animation.

      This approach is similar to what we did in the early HTML days but the idea is to take the approach much further. I really dislike the fact that most programs are single threaded and the UI goes to sleep every time it is asked to do anything computationally intensive of requiring the network. The architecture I just described allows the window manager to keep the user interface alive even though the program logic is 'thinking' and the programmer does not have to do any work to achieve this.

      The other advantage of this approach is a bit more controvertial, it limits the scope of the UI designer. This is a bad thing if you really, really love to foist a bizaro UI onto the user. On the other hand it means that every application can be skinned so implementing the bizarro UI is simply a matter of telling the program manager how to do it for every program on the machine.

      --
      Looking for an Information Security student project suggestion?
      Try http://dotcrimeManifesto.com/
    53. Re:I think he's right by m50d · · Score: 1

      KDE is the platform. It includes libraries for everything - multithreading, network i/o, config storage, audio playback, etc. You can write a kde application without needing a single bit of os-specific code - just recompile it and it runs fine. The way to write a program like this is to avoid reading the docs for the OS, just use the kde ones. There isn't a proper windows version but come kde 4 there should be, at which point it can really take off, at least I hope.

      --
      I am trolling
    54. Re:I think he's right by Anonymous Coward · · Score: 0

      A platform is a platform only if its stable, and I don't mean "stable" as in "does not crash". I mean "stable" as in "does not change significantly every 6 months". So Debian would be an ideal choice.

      However, Debian itself has zero commercial drive. I wonder what drives Debian at all, and other people wonder, too, given the admirable rise of Ubuntu.


      Debian is a platform, its simply not a platform targetted at businesses. Debian developers work the platform based on a philosophy and ideals that while are not designed to lockout commercial interests, they are not designed for gaining on platforms like windows either. I know I personally do not use Linux and Debian in order to try and encourage others to, I use it because I personally like its design (both on a philosophical level and an implementation level).

    55. Re:I think he's right by Taladar · · Score: 0

      and:
      c. That they have the same bugs/security holes they had when you packaged your app

    56. Re:I think he's right by punkass · · Score: 1
      --
      "Nobody owns the fucking words man." - James Dean
    57. Re:I think he's right by Taladar · · Score: 1

      Real "hand compilation" is probably only done by compiler developers. Everyone else who wants to create Assembler manually creates it directly without a higher programming language implementation.

    58. Re:I think he's right by Anonymous Coward · · Score: 0

      "Windows was never an OS. It contains an OS, they changed OSes in the product lifetime, but the product has always been a desktop environment and a consistent, well documented, and long-supported API."
      So very true

    59. Re:I think he's right by iamwahoo2 · · Score: 1

      MacOSX and Windows don't need their apps to be compiled? I am sorry, I just do not see where you are headed with this. What does compiling have to do with this and why would you have to "recompile"? You only have to compile once.

    60. Re:I think he's right by mattyrobinson69 · · Score: 1

      if you use lilo, kcontrol has a kcm module for lilo (pointy-clicky goodness).

      I'm very happy with the way linux works (with UDEV) with _most_[1] hardware - plug it in, udev detects it, loads the kernel modules, open an app to use it and it just works.

      [1]: i recently had a problem with my dvb card when i moved over from gentoo (where i knew were stuff was because i put it there) to kubuntu where stuff just works. the problem was that it detected a bt878 chipset (on my dvb card), so loaded the bttv module and the snd_bt878 module. the snd_bt878 module blocks the dvb_bt878 module so it took a quick gander through dmesg to find the problem, then a quick edit of /etc/hotplug/blacklist to stop snd_bt878 loading ever again. i am fully aware that most people (windows users/linux newbies) would have no idea what to do in this situation. on the upside, once i fixed that, it just worked (i might have had to load the modules myself though, not sure)

      windows isn't as plug-and-play as people think - ive had so many problems with windows not associating hardware (particularly sound cards) with their drivers but ive never had this in linux (plus drivers for stuff comes with linux so you dont have to put in 10 different cd's for 10 different chipsets when you install linux)

    61. Re:I think he's right by penix1 · · Score: 1

      "For them, design stability, consistency and suppport are way more important. Windows gives them that."

      Ever tried to get support for Windows 2000, Windows 98, or Windows 95 lately? Their answer is of course, "Upgrade to XP". As for "stability, consistancy" I beg to differ with you on these items. The only thing consistant about it is the need to purchase more and more hardware to support the OS.

      B.

      --
      This is a sig. This is only a sig. Had this been an actual sig you would have been informed where to tune for more sigs.
    62. Re:I think he's right by 51mon · · Score: 1

      "From this point of view, an OS that wants to be so universal will never be the best on any single platform. Therefore, Linux will never be better than windows, if we are talking about Inteles alone."

      Isn't that the "lets kill a port" myth of Debian release management in another guise, and with less basis.

      The platform is pretty well hidden these days, low level programmers occaisonally scratch head when they forget there is more than one number representation.

      What will determine success on a platform is down to how well THAT platform is supported, and I don't think being supported well on other platforms is a draw back.

      Indeed, in the 90's there were a lot of architectures on which proprietary Unixes (mostly SVR4) were the best and we didn't see Unix vendors going round saying "we must be second best of QUMA because we are Unix and run on lots of platforms.".

    63. Re:I think he's right by Kierthos · · Score: 1

      Integrate well? Eh.... sometimes. Maybe even usually. But there are the giant gaping holes where it doesn't integrate well with other products and hardware. The color format in MS Office blows chunks, as MS decided to make their own format, rather then go with a standard CMYK format, to the point where I can't count the number of times that "Microsoft blue" comes out purplish on any number of the printers in the store. And when you have people who insist on using Word to create the 2ft. x 3ft. signboards in Word instead of using something that actually handles colors properly (like Pagemaker or Illustrator, or even Quark Express), well instead of it being their fault for using a program with shitty color handling, it's our fault for not changing the text to "blue". (I mean, come on, really, is it that goddamn difficult to use a color standard that is not proprietary?)

      Kierthos

      --
      Mr. Hu is not a ninja.
    64. Re:I think he's right by tehcrazybob · · Score: 1

      I think you're slightly mistaken. The article never said that Linux was not an operating system with widely varied talents. What it said was that there was no way Linux would ever make the jump to a complete platform, especially one that could be sold.

      Linux isn't a viable product. It changes too often, and there are far too many versions. You pointed this out yourself. Can you imagine Windows ever being popular if there was a version for students, a version for corporate markets, a version for Grandma, and a version for average (stupid) users? It would never work. Windows is a commercial success for several reasons:
      -It's a monopoly, even though Linux and Mac OS exist
      -It comes bundled on a lot of systems, thereby saving the user the trouble of learning enough about their computer to install something by themselves
      -It Just Works. Almost all hardware manufacturers write device drivers with Windows in mind, and since Windows is so common, the proprietary software it uses is also widespread. This means that any hardware you toss in the system should Just Work. Any documents Mom sends you should Just Work.

      Linux can do all these things, but sometimes it takes a bit of work. Linux isn't an all-in-one solution that Just Works. Instead, it's a fast-paced, rapidly changing way to get your computer to do the most possible. Most users don't care whether they can change their ethernet adapter's MAC address. They want to buy a computer, plug it in, and turn it on, and have everything work. If they need to install something new, they just double click the pretty picture, and then click OK a few times.

      Linux is a long way from this type of usability, and given past experiences, it seems unlikely it will ever make the jump.

      --
      Computers need to explode more often.
    65. Re:I think he's right by Anonymous Coward · · Score: 0

      I'd disagree that games are a special case. Applications like Mozilla and Firefox seem to install easily, without lots of dependencies. And they are complicated programs - you don't have to hunt down libjpeg, libgif, truetype fonts, an assortment of obscure Asian language support libraries (for an English build of the program), the newest version of gtk++, etc. Yet the browser must rely on much of the same functionality - it needs the ability to show JPEGs and GIFs, write decent looking fonts on the screen, have usable widgets. Yet the Firefox installer seems to work without caring much about your specific linux distribution.

      Someone needs to come out with an extended but standard library for desktop Unix. A reasonable component system, with functionality for all the basic desktop-software tasks built in. Sort of an extended glibc for desktop applications; font management, image file management, sound, clipboard, etc. Diversity and alternatives are fine, but really - there's a lot of duplication of tasks that noone in their right mind really enjoys duplicating (but were obliged to duplicate because there was no standard for those tasks).

    66. Re:I think he's right by Politburo · · Score: 1

      Not without.. third-party products.

      What exactly defines a third-party product, in the context of Linux? For example, if you want a different UI, you can use a different WM. If this WM isn't included with the distribution (or default config/install, or whatever arbitrary designation you want for argument's sake), isn't that the same as installing a third-party app on Windows?

      I think there is this misconception that Windows users do not have choice because MS only provides certain options. That is true to some extent, but "third-party" tools do things with Windows that MS doesn't want to do.. so the choice is still there for Windows users, it's just not provided by Microsoft. I'm just not seeing that big a difference between the two platforms in this respect.

    67. Re:I think he's right by ravloony · · Score: 0

      Yeah, in France, where I live, lots and lots of people, primarily among the student population, are moving over to Linux. The others usually have a cracked version of Windows, or the low-cost OEM version that came with the PC. But no one I know _buys_ an upgrade. So yes, I think the upgrade cycle is going west. But hey, time will tell. :-)

    68. Re:I think he's right by 51mon · · Score: 1

      "Debian is a platform, its simply not a platform targetted at businesses."

      I always thought Debian was targeted at system administrators. The packaging in Debian is precisely about sharing administration experience in the same way free software shares the ability to do something with software.

      As such Debian is very widely used in businesses, I suspect quite a lot of the top business people don't even know it, they just find the techie guys are asking for less money for software and still turning out better levels of performance.

    69. Re:I think he's right by man_of_mr_e · · Score: 1

      Static linking is absurd for most general purpose apps. Can you imagine how much memory KDE would take up if everything were statically linked? Each app would be 10-20MB in size, and they wouldn't be able to share the common bits between apps. Just running KDE itself and several KDE/QT apps would take 300MB

      Even though memory is cheap(ish), you still don't want to squander it.

    70. Re:I think he's right by ultranova · · Score: 2

      SDL can be statically linked - people don't notice adding a few MB to the executable size when it is accompanied by a GB or two of data.

      There is no need to statically link the SDL library. If you want to ensure that the game has access to a specific version of the SDL library, simply put it into a subdirectory of the game's directory and put the text "export LD_LIBRARY_PATH=./SDL:$LD_LIBRARY_PATH" to the game's startup script. This way, the game uses the SDL version in the "SDL" subdirectory of the game directory by default, but the user can remove the line to make the game default to the system's installed version.

      Neverwinter Nights, for example, does this.

      --

      Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

    71. Re:I think he's right by Wudbaer · · Score: 1

      VB6 came out when ? A long long time ago in any case, far far back at the end of the 90s, if I'm not completely wrong. Compare to that what kind of APIs and toolkits in the Linux world have come and gone and mightily evolved in that time. Who is still using KDE 2.x or Gnome 1 to build their software against ?

    72. Re:I think he's right by man_of_mr_e · · Score: 1

      I both agree and disagree.

      Traditionally, platforms with much more stringent control over the platform have done better for a variety of reasons. Linux could (though highly unlikely) emulate that model and force people to follow various standards. That would probably improve things.

      However, and I think this is a much better choice (but also probably unlikely), the platform could address the problems that standardization solves in a more creative way.

      For example, while we'll never have a single package management system, we *COULD* have a single package management framework that all other package managers utilize to obtain cross distro compatibility. For example, take a distro like Fedora which uses a tradition Unix filesystem layout and compare it to a distro like GoboLinux that uses a layout more like OSX. A common framework could be customized for each distro to tell the installer where to put user binaries, how to configure desktop menus, where to put configuration files, etc..

      Sadly, I don't see anything like this ever happening.

    73. Re:I think he's right by man_of_mr_e · · Score: 1

      Frankly, I think the whole "window manager" concept of X is faulty to begin with.

      The things which most people think of as a window manager, arent'. Desktop menus, icons, wallpaper, and file managers are not Window Managers.

      The window manager is strictly the so called "non-client" area of a window. The titlebar, borders, sizing controls and window controls (Close, Minimize, shade, whateveer). That's *IT*.

      There is no reason there needs to be 10 bazillion window managers out there to do these basic functions. And there's no reason this couldn't all be handled by a single, simple but customizable library.

      All the other stuff, which primarily falls into the "Desktop Environment" category is not strictly a window manager, and that sutff can vary greatly.

      Microsoft has actually done pretty well with XP's theming API. It could be better, and a little more extensible) but it provides 95% of what people want to do with WM's. A Linux "unified window manager" could provide 100% of what people want and leave the rest to DE's.

    74. Re:I think he's right by man_of_mr_e · · Score: 1

      Uhh.. VB6 was released in 1998. 7 YEARS ago. That's certainly "long supported" despite the fact that it's not a Windows api, but rather a framework and compiler.

    75. Re:I think he's right by Sj0 · · Score: 1

      I suppose the thought had never occurred to you that unlike some software markets, Open Source users have choices, and some people will defend and evangelize their particular choice?

      Jesus man, there are people who will rant at length about how horrible and shitty ford/gm/chrystler/nissan/toyota/etc are, why is it when you're talking about software packages it suddenly becomes a mortal sin?

      Contrary to what you've been told, there doesn't have to be one "best" way of doing anything, and you don't have to take the advice of every dipshit who wants to tell you theirs is that way.

      --
      It's been a long time.
    76. Re:I think he's right by nickos · · Score: 1

      "UT2004/Doom 3 are certainly safe, since they are actively maintained; but no one will recompile Civ CTP, HLDS and other unmaintained programs."

      Ahh, lovely closed source programs. Seriously though, many people in linux-land assume that because it's a FOSS OS everything can just be recompiled and changes to the ABI don't matter. They forget that there are a few progs (mostly games) that are closed source and will most likely never be recompiled.

    77. Re:I think he's right by Anonymous Coward · · Score: 0
      The Windows GUI was not really integrated into the kernel, at least not into the kernel design. It was moved from a user-mode server process (csrss.exe) into loadable kernel module (win32k.sys) for efficiency, e.g. to allow the rendering and window management code to call into the graphics driver without requiring a user/kernel context switch. However this required no changes to, for example, the Windows APIs, or to applications.

      Based on the books/documentation I've read describing the design of Windows (NT/2000/XP/2003), I suspect Microsoft could quite easily move the GUI back into a server if they wished. However, on current hardware architectures, running the GUI in a server process will always be slower than running it in a loadable kernel module, so I can see no reason why they would do this.

      In theory, the NT kernel could run without loading win32k.sys, but most if not all Windows software depends, either directly or indirectly, on APIs implemented in the GUI modules (and this was so even when the GUI ran in a server process).

    78. Re:I think he's right by op00to · · Score: 1

      What it said was that there was no way Linux would ever make the jump to a complete platform, especially one that could be sold.

      The author is a genius. Leave it to the tools at Infoworld to publish this -- WOW, LINUX CAN'T BE SOLD (as a working business model)? I think that whole being able to download the kernel and such for free thing really hampers that. Kudos to Captain Obvious.

    79. Re:I think he's right by ckaminski · · Score: 1

      Let's not forget that in a certain time frame, 1997 - 2000, that this was NOT true of Windows. Software depended on particular versions of DirectX from 3.0 - 6.0, and often installed their own versions over newer versions already on the machine. Many times you couldn't install the game at all if you had a newer version (or ANY version) of DirectX installed.

      Linux gaming is evolving, hence the move to standardize OpenGL 2.0. GL is too dated to do many of the things modern gaming engines require, and needs a serious facelift. Someday Windows games may revert to GL based engines, instead of DirectX, who knows.

      Linux/OSS in general needs a standard dependency manager and package management tool. Maybe it's time for the RPM+DEB guys to get together and start from scratch with the best from both worlds?

    80. Re:I think he's right by ckaminski · · Score: 1

      Note that your comment about DLL's not being demand pages are incorrect. You do not have to load the entire thing into memory to benefit from code sharing (at least not in a smart operating system like Windows (NT/XP)).

    81. Re:I think he's right by nodialtone · · Score: 0

      "Many of us call that CHOICE ."

      Yeah, the box said that it requires Win 95 or better, so I installed Linux.

      js

    82. Re:I think he's right by cortana · · Score: 1

      Indeed, I wonder why the LSB or someone else doesn't come up with a cross-distribution way to manage such ABI transitions so that we can keep both sets of libraries around with a Soname that corresponds to the ABI version.

      libstdc++.so.6 -> libstdc++.so.6.0.3
      libstdc++.so.6c1002 -> libstdc++.so.6.0.3c1002

      Anyone?

    83. Re:I think he's right by budgenator · · Score: 1

      there is no reason at all why a company can't just package up everything it needs in one big self-contained lump, eliminating the need for dependencies
      Of course your right, it should not be a big problem for the package manager that complains about a missing dependency, to go ahead with permission and install the dependency. Most distro stick things in /usr/lib, or /opt which leaves /usr/local/lib for non-distro stuff, install there and the distro ususly doesn't over-right it. One problem that will arrise is frequently a big lib like glib is depended on by SO many other programs, that updating it usualy isn't feasable practicaly, it is practicaly a whole new install so it's better to upgrade the whole system.

      Right now I'm running dual-boot Arch-linux 0.7 and SuSE Linux 8.1; the SuSE is terribly outdated and it's almost impossible to compile anything on it, too many unresolved dependcies, the Arch however will compile anything, it just short of bleeding edge.

      --
      Apocalypse Cancelled, Sorry, No Ticket Refunds
    84. Re:I think he's right by Anonymous Coward · · Score: 0
      I don't think students anywhere have ever bought OS upgrades; books are expensive enough! ;) Where I live (Denmark), computer science students often use Linux at least some of the time, but not many others do, except a few nerds.

      I'm not certain, but I remember reading somewhere that the OS upgrade business has already become unimportant for Microsoft, compared to the OEM sales. This would explain why each release has higher and higher hardware requirements: so the customers will go out and buy new PCs. It would also explain why they keep adding features to service packs, offering free downloads of add-ons, etc.

    85. Re:I think he's right by Anonymous Coward · · Score: 0

      i think you missed the point.
      linux the platform would go far beyond linux the operating system. and selling linux doesn't necessary just mean getting money in exchange for linux. it also means getting ppl to choose linux over other existing platforms(windows). in this respect, no linux cannot be sold to ppl. they simply wouldn't "buy" it for the reason the GP said.. too complex, changes too often, and also, not very pretty.. i just started using gentoo a few months ago and a lot of the GUIs on these open source programs are utter crap. OSS really needs some good GUI designers..

    86. Re:I think he's right by cuerty · · Score: 1

      But as a VB6 developer you can't now, and neither cant 7 years ago, find information about some APIs, like Winsock for example, there are many features that are not documented, and never will be.

      --
      >Linux is not user-friendly.
      It _is_ user-friendly. It is not ignorant-friendly and idiot-friendly.
    87. Re:I think he's right by Darth+Daver · · Score: 1

      "a consistent, well documented, and long-supported API"

      Well, let's not go overboard, okay? Every Windows upgrade likes to move things (menus, commands, config options) around for no good reason. The APIs have changed significantly at least three times over the past ten years. Drivers often don't work from version to version. Documentation? Please. It can't hold a candle to the documentation available for Linux and many other OSS projects. Microsoft loves to hide things and use undocumented APIs.

    88. Re:I think he's right by x_terminat_or_3 · · Score: 1

      Hello, Im sorry to disagree

      You are entitled to an opinion as much as the next guy (or girl) so why would you be sorry to disagree?
      Never be sorry for who you are or what you think.

      x_terminat_or_3

      --
      Only those who risk going too far can possibly find out how far they can go. T. S. Eliot
    89. Re:I think he's right by Elranzer · · Score: 1

      Linux Can't Kill Windows\

      No, Windows will kill Windows.

    90. Re:I think he's right by alexfromspace · · Score: 4, Insightful

      I think that the idea that GNU/Linux should replace Windows, or anything else for that matter, is faulty from the start. The driving force before GNU and much of open source is people who want to write software for themselves, and share it will all those who are willing to share. The motivation for using GNU/Linux is that it fits your needs, not that it is Not Windows, or something else for that matter. Pressing requests for features, and complaints of lacking technical or customer support are outright ridiculous and should be laughed at. Why? Because no one is forcing anyone to use GNU/Linux. If anything, one should be thankful to those who put forth the effort to get it done on their own time. But the developers should not care anyhow, because they do it for themselves and those who share.

      The war between open-source proponents and windows proponents does not fit in with GNU/Linux ideology, it is a totally foreign concept for it in fact. The war was started by Microsoft because they could not buy open-source, and was picked up by people who already disliked Microsoft and by those who thought it was 'cool' to participate (myself included).

      But anyhow, to answer your original question of what drives debian development, here is my take on it. Developers want features for themselves, their clients, customers. Developers want neat solutions to show off to potential employers and graduate school admissions too. And something like that. Don't try to find in the list something like "Users Bob and Carloine want a button that whereupon thrice clicked will take her...".

    91. Re:I think he's right by man_of_mr_e · · Score: 1

      What does VB have to do with that? Are you suggesting that C++ developers have access to information VB6 developers do not?

    92. Re:I think he's right by Anonymous Coward · · Score: 0

      By 'doesn't change every six months' do you mean something like Solaris (practically dead) or do you mean something more like, oh, Windows 95/98/2000/Me/XP/Server/etc etc etc...

    93. Re:I think he's right by namekuseijin · · Score: 2, Interesting

      "What is the advantage for them ?"

      It's the Freedom advantage: the user has the freedom to use, share and modify (or pay others to do it) free software.

      It's not like they actually will _use_ such freedoms, but they actually have it.

      Let me just ilustrate this discussion with a single recent example: old time VB developers are annoyed to hell with Microsoft for dooming the old development tool and forcing VB.Net complexities down their throats. The same happened to many tools in the past: they became obsolete once the manufacturer halted development.

      This simply doesn't happen in the Free Software world, where enough interest can keep the software going on well past their glorious days...

      --
      I don't feel like it...
    94. Re:I think he's right by Hal_Porter · · Score: 1

      Just to give you an example: mplayer is technically cool. But its complexity scares people away. It's only cool because it's free. You won't be able to sell it to anybody, because as a software _product_ it sucks. badly. Even with gmplayer.


      Hey, but the mplayer team are working on this I'm sure.

      ...Checks http://www.mplayerhq.hu/homepage/index.html...

      Geez a rant about how the project will CLOSE SOON due to software patents, and a bunch of butt-ugly screenshots on the next page.
      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    95. Re:I think he's right by I'm+Don+Giovanni · · Score: 1
      Many of us call that CHOICE .
      But others may call it CHAOS . ;-)
      --
      -- "I never gave these stories much credence." - HAL 9000
    96. Re:I think he's right by mt1955 · · Score: 1
      Unix was an operating system developed by a very small group of people at Bell Labs. MSWindows was an operating system developed by a much larger group of people now in Seattle. Linux is an operating system developed by an even larger group of people from all over the globe.

      Evolution always wins out over design. It's just a matter of time before Linux becomes the whole world's operating system.

      Right now MS might be looking at the Linux community the way the Roman Empire looked at the Visigoths and Vandals but if they are smart they will start working toward becoming the world's best at writing applications for Linux.

    97. Re:I think he's right by TheNetAvenger · · Score: 1

      With Windows, you get... well, Windows. You have to shim other things onto it to get it to be useful. For example, I don't use icons, toolbars, window frames or titlebars. Show me how I can configure Windows to provide that interface, in an easy way... you can't. Not without 10 different third-party products.

      Simply boot to the command prompt, you won't even have to look at an Icon...

      If you need help in doing this Simply set your shell to cmd.exe in the registry.

      Pure command line fun for all the geeks that don't realize the benefists and productivity of a Windowed environment with consistent UI aspects.

    98. Re:I think he's right by daddymac · · Score: 1
      The motivation for using GNU/Linux is that it fits your needs, not that it is Not Windows
      I agree with this 100%. I use linux every day of my life, because it does what I need it to do. My wife, on the other hand, needs Windows for work and play. But she uses Mozilla under windows, her email is acessed through the web browser, with the great leaps that ooffice is making, and now that there is a jukebox program that supports her mp3 player (and not one that requires me to purchase a commercial linux OS) there will soon come a time when she will no longer "need" windows, as she will be able to do everything from fedora. She's looking forward to that day as much as I am.

      Of course, this means we will have to purchase a wifi card that linux supports (her current card is problematic at best, but runs fine under windows), but that's not a big deal.

      --
      If something I said can be interpreted two ways, and one of the ways makes you sad or angry, I meant the other one.
    99. Re:I think he's right by Anonymous Coward · · Score: 1, Interesting

      Only problem with this theory is that a lot of commercial software only looks better than open source. It's just as buggy, and has the same problems. It's got a slick package and a paper manual with it, so it must be better. LOL

      I still can't play movies with windows media player for very long (10 minutes or so) before it locks up and I need to pull up task manager and kill it. This is on a PIV 2.53 Ghz, 768MB memory, and a 128MB video card. I have a fully patched windows xp system with the latest and greatest.

      I have similar issues on my AMD64 3200+ with 1GB of memory.

      Windows media player sucks ass.

      I was attempting to have a media computer hooked up to the tv. 4 weeks later my wife came home with a dvd player and requested that I move the box out of the living room.

      I've watched complete movies through mplayer on my linux laptop, many, many times. To me being able to watch a movie without endtasking the player every 10 minutes indicates vastly superior software. If Windows Media Player is commercial grade, I hope that linux and oss never, ever, get there.

      l8,
      AC

    100. Re:I think he's right by Math,+The+Ancient · · Score: 1

      And I'm sure you got it work then, right? (not)

      --
      If I really am talking out of my ass...explain it to me with respect so I'll at least pull my ears out to listen.
    101. Re:I think he's right by cornjchob · · Score: 1

      I think the difference lies in implementation--if I change my WM in linux, the old one goes away...in windows, if I want to alter my GUI, I need to run a GUI on top. That takes up needless resources, slows things down, and means that there's a much higher probability that the system will get errors and crash. Just far too messy for my tastes.

      --
      We now have confirmed reports from an informed Orange County minister that Ethel is still an active communist.
    102. Re:I think he's right by Math,+The+Ancient · · Score: 1

      "Windows was never an OS."

      Methinks you're jealous because you couldn't figure out the command line syntax.

      --
      If I really am talking out of my ass...explain it to me with respect so I'll at least pull my ears out to listen.
    103. Re:I think he's right by hacker · · Score: 1
      "If you need help in doing this Simply set your shell to cmd.exe in the registry."

      Surely you jest... you can't possibly be comparing the cromagnon capabilities of cmd.exe to a real shell like csh or bash, could you? Naw, I didn't think so.

    104. Re:I think he's right by Wile_E_Peyote · · Score: 1

      Many of us call that CHOICE.

      Most people don't actually want a lot of choices. They just want it to be easy.

      With Windows, you get... well, Windows. You have to shim other things onto it to get it to be useful. For example, I don't use icons, toolbars, window frames or titlebars. Show me how I can configure Windows to provide that interface, in an easy way... you can't. Not without 10 different third-party products.

      You don't use icons or window frames? What? I don't quite understand what you are saying here. Really.
    105. Re:I think he's right by Pxtl · · Score: 1

      Wait, they're chaning the C++ ABI? Mhh... hmmpph.... HAHAHAHAHAHAH!

      I know programmers who said "Yes! I can finally code my Linux apps in C++!" when the last ABI was declared "final". Nice move. Way to screw the developers.

    106. Re:I think he's right by Pentavirate · · Score: 1

      That WiFi card will be more complicated than you think - unnecessarily so, but that's mostly because WiFi card manufacturers like to change chipsets without changing model numbers! I've just been through Linux-WiFi hell recently.

    107. Re:I think he's right by maverick97008 · · Score: 1

      >It's only cool because it's free.

      This is the the great (mostly) unspoken factor in the majority of open source software, and often it is not enough to move it past it's commercial equivelent.

    108. Re:I think he's right by daddymac · · Score: 1
      Yeah, linux / WiFi can be a pain if you don't have something properly supported :)

      She's got a NetGear MA-521 which I got to work under redhat 9 (with much effort) documented here for anyone interested, and there's also a good ndis wrapper tutorial for this card here.

      My plan though, is just to get a plain-jane orinoco/hermes card for about 20 bucks... actually already have a "spare" that she could use (I know this particular card to work out of the box on most linux distros) but I already have plans for that in my old POS omnibook.

      --
      If something I said can be interpreted two ways, and one of the ways makes you sad or angry, I meant the other one.
    109. Re:I think he's right by coolGuyZak · · Score: 1

      Ok. It will run on x86... but that hasn't been released yet.

      So, I ammend my previous statement:

      "This be nitpicking, but the only *publicly released* version of OSX runs on PPC"

    110. Re:I think he's right by cortana · · Score: 1

      Meh, that's the price you pay for using an unstable and unstandardised language.

      Reading the Debian transition plan I see that LSB 3 intends to stabilise the C++ ABI at version 2 (the one used by GCC 3.4 and above, I think).

    111. Re:I think he's right by EvilSporkMan · · Score: 1

      You don't use icons or window frames? What? I don't quite understand what you are saying here. Really.
      He probably means that he doesn't have any icons whatsoever on his desktop. This is easy to accomplish on Linux - don't run any software to put them there! (Nautilus, KDE equivalent thereof) I'm guessing that some minimalist window manager out there draws windows with no frames...I suspect twm but I didn't think it was THAT minimal.

      --
      -insert a witty something-
    112. Re:I think he's right by joggle · · Score: 1
      You can build your app expecting them to be there.

      No more than in Windows expecting to find a certain dll (Windows dynamically linked library). Your app doesn't have to use a certain lib. Instead, it can be programmed to use whichever lib is available using intrinsic Linux commands which in turn use the ld (Linux linker) tool to find the library and try loading it. At run time the app can pick and choose which libs to load just like Windows apps can pick and choose which dlls to load.

    113. Re:I think he's right by Anonymous Coward · · Score: 0

      I use linux every day all day. I spend tremendous amounts of my free time using linux. I am in no way a zealot and I try to bring realism to the world of linux because the zealotry I read day in and day out sickens me. It's pathetic. It is also killing Linux as a product that could dent Windows.

      Right now there are too many distros and too much variation with each release of each distro, period.

      Right now the issue with software acceptance is installation. The linux industry as a whole MUST, and it is an absolute MUST, come up with a universal application installer that works on every distro and every variation of that distro.

      Do that right now and you'll save everyone the stresses that every new linux person goes through. FFS, this is a 10 year old operating system that has some degenerate zealots harassing every realist, even in the privacy of their homes. Can't you guys figure it out? You suck because you can't see the forest through the trees. You hate everyone that wants to promote linux in the direction it needs to go. You just want to sit back and charge your fees because a difficult to maintain OS is a money maker for you.

      We know this. We see this. This will be the downfall of linux.

      Get it straight. Get it fixed. Change linux for the rest of us and make a universal distro application installer and stop trying to screw us out of money by charging for your pathetic support.

    114. Re:I think he's right by Man+Of+Pi · · Score: 1

      Sure. Free is cool. It's also open-source, which means you're free to verify that the source is valid. There can exist no bug in open source software that can't, or won't, be resolved, and history has proven that these bugs are resolved amazingly quickly. What's the alternative? Windows automatic update? They release huge bundles of updates fairly rarely. And, look at SP2. Two out of the only three privately owned Windows computers I've seen in the last year were brought completely to their knees, utterly crippled by Service Pack 2. One of the updates in SP2 took up to 96% of the processor, according to Task Manager, and took forever to identify.

    115. Re:I think he's right by barbarac · · Score: 1

      Agree with you to a degree. Before I took over the Ops role in the company I'm in, all their signage was done with Word and Excel. Not anymore....

      --
      Rob Barac
      www.intersplice.com.au/blog
      www.cafegeek.com
      www.marketingroots.net
    116. Re:I think he's right by kangpeh · · Score: 1

      ROFLMAO. You need to realize this. You gotta pay people money to program for you. Why TARGET (This is a MARKETING lesson for you) a SMALL audience (Loonix) who tends to not pay for software, when you can TARGET an INCREDIBLY large audience that tends to pay for software a lot (Wind0ws)? That's the deciding factor. The world works on money. Even look at this website - there are advertisements there. Can you complain? No. Without those ads, this site would not exist - seriously. Money is so important - even if we don't want it to be, because money is just an object used to obtain the resources we need to LIVE. I.e, FOOD, WATER, SHELTER, GIRLS, ANIME, and SCHOOL GIRLS.

    117. Re:I think he's right by Anonymous Coward · · Score: 0

      Erm, no offense to the mac o philes, but back in the dark ages of MacOS (7.anything and below), it most certainly did NOT 'successfully support' a whole lot of anything.

      It wasn't until much later revisions that Mac really started to be worthwhile.

    118. Re:I think he's right by Anonymous Coward · · Score: 0

      Something must be wrong with one of your hardware, incompatibilities perhaps?

      I'm using a fairly old hardware, 2.4ghz P4, 512mb ram using the onboard i845g graphics controller, have not reformatted for about one and a half years

      I use windows media player for all my media watching and listening, it has never crashed on me before.

    119. Re:I think he's right by Anonymous Coward · · Score: 0

      Let's not forget that in a certain time frame, 1997 - 2000, that this was NOT true of Windows. Software depended on particular versions of DirectX from 3.0 - 6.0, and often installed their own versions over newer versions already on the machine. Many times you couldn't install the game at all if you had a newer version (or ANY version) of DirectX installed.

      That sounds fishy. As far as I can remember DirectX setup was ALWAYS a component provided by Microsoft. Furthermore DirectX interfaces are versioned, and even in the newest release at version 9 you can still access DirectX interfaces from the first version.

      Any proof of the things you said regarding DirectX compatibility?

      Linux/OSS in general needs a standard dependency manager and package management tool. Maybe it's time for the RPM+DEB guys to get together and start from scratch with the best from both worlds?

      The problem is that there are already a bunch of package management systems out there, including Gentoo's portage, yum, etc. Starting over from scratch will simply add another system unless existing developers from all current package managers work together. But that eliminates choice, and while I personally don't care for choice in the area of package management, there are probably people who do.

    120. Re:I think he's right by Anonymous Coward · · Score: 0

      And when zlib gets a root exploit, you recompile/reinstall everything that uses it?

    121. Re:I think he's right by mabinogi · · Score: 1

      In my experience, whilst games bundle the Direct X version that was appropriate for them the DX installer was intelligent enough to basically do nothing if you already had that version or later.

      With one exception - there was a 3a or 5a or something version (I can't remember what game it came with), that insisted that I didn't have DX already installed and managed to completely bugger everything up.
      However, that's a bug, not a design flaw.

      There definitely were issues with DLLs being replaced by older versions when you installed software in the past, but it wasn't DX, it was usually things like OCX controls or similar.

      --
      Advanced users are users too!
    122. Re:I think he's right by Anonymous Coward · · Score: 0

      Ever try to get support for Linux at all? Exactly who am I supposed to contact if I have problems?
      As for trying to get support for old software, their are quite a few companies that only support their later versions. Try to name even a handful of companies that will support a '95 version of anything? Bet it's not an easy task.

    123. Re:I think he's right by HumanTorch · · Score: 1

      Christ, man. Most computer users still don't grasp the concept of a file and a folder.

    124. Re:I think he's right by Anonymous Coward · · Score: 0
      "Most computer users still don't grasp the concept of a file and a folder."

      They're called directories , not folders. Folders are what you put on your desk.

      Apparently even you can't grasp the concept.

    125. Re:I think he's right by Zemran · · Score: 1

      Strange and completely untrue. I find the cost of using Linux is higher because if I used Windows I would get all the software I want by just borrowing a copy from work. It is because I use Linux that I have to buy so much as I cannot grab a copy. I do not mind paying a small amount for something which is stable and better even though I am surrounded all day by all the disks I need to run the latest flavour of Windows. I always buy a copy of the latest SuSE professional etc and I own lots of Linux games as well as several small programmes that I had to pay for.

      In response to the article, I do not think that Linux should want to 'kill' Windows, it is choice that is the best option and Windows is one of the choices. I want Linux, Apple and Windows to do well as I think that there should be as much choice as possible for the consumer.

      --
      I love stacking my barbecues in the shed at the end of summer - you can't beat a bit of grill on grill action.
    126. Re:I think he's right by TrancePhreak · · Score: 1

      COM actually gets around this as you specify a version that you desire and it gives you an interface that matches that version. You may only need one dll to match all the COM versions if they behave the same, or you may have multiple and it will automatically determine which one is needed.

      --

      -]Phreak Out[-
    127. Re:I think he's right by Crazy+Eight · · Score: 1
      But where did he show us the critical difference between an "OS" and a "platform"? And if it actually matters then what is it that could keep Linux from making that quantum leap?

      I'm not buying this guy's argument at all because he's hardly trying to make it. He outlines a distinction that might support his thesis (an OS is not a "platform") and then talks his way near it without actually putting it to use.

      The closest he seems to get is this: "An operating system is a rack into which device drivers and APIs are inserted. A platform is a rack into which applications are inserted." If we're to nod along with the cadence of his polemic we must assume that APIs like those provided by Windows are not analogous to those provided in GNOME and KDE, or that there is some other technical factor at play that Linux could never aquire which he doesn't mention.

      Those who haven't read the article are perfect subjects for the following quiz:

      "You can code with the tools of your choice and in the programming language of your choice... ...and everything you create will interoperate with everything others write...

      What operating system is he talking about?

    128. Re:I think he's right by Anonymous Coward · · Score: 0

      >> SDL can be statically linked

      AFAIK, only if you are not making a commercial product or if you have access to an alternative license. SDL is LGPL licensed and afaik you cannot statically link to it without releasing your sources (a clause which prevents 3% of abuses and is absurd in the other 97% of situations imho).

    129. Re:I think he's right by Ogerman · · Score: 1

      In short, I see all of this as signs that Linux is moving too fast for people to consolidate and work out standards.

      On the other hand, standards are emerging nonetheless -- by the fittest surviving. You might see Open Source has having been through a chaotic rush to catch "unix" up to the status quo in desktop software. It's not over yet, but it's showing signs of slowing. The other thing to consider is that some standards are more important to consolidate on than others. This leads me to my next point below...

      We're in a transition period where people are held back by old systems, but seek cross-platform compatibility on new systems. It's like watching pressure build for a switchover. Just because there's been no mass exodus you still see them untangle themselves from Windows strangleholds.

      You've just hit on a crucial point that the original article missed. "People are untangling themselves from the Windows stranglehold." Or another way to put this: desktop platforms don't matter anymore! Look at what people (companies) are doing to untangle themselves from Windows. They're replacing traditional Win32 client apps with web applications, local or hosted. They're replacing Exchange/Outlook with 3rd party mail software, web based groupware, mail server "applicances", outsourced mail services, etc. Each step along the way breaks away from the very need to have a consistent desktop platform in the first place. The web is the new platform of consistency. It is driven by true standards -- open standards, like the work of W3C. And it matters not what hardware or operating system you run. (Though Linux or BSD will get you on the web for cheaper, both on the server and client side)

      It's curious that the article ends with a claim that MacOSX and Java are the only "platform" that can compete with Windows. In fact, Java is a very important piece of the "web" ecosystem -- but it is fully cross platform and runs no better under MacOSX than under Linux. MacOSX is "unix" just as much as Linux and BSD are. The only reason to use MacOSX as a platform is for its really slick graphics / GUI toolkit libraries. And those are only needed for specialized applications not yet suited for the web.

      The pressure is indeed building and the whole paradigm of how we use computers is changing. With the exception of a possible surge as OpenOffice.org* reaches "acceptability" I don't expect to see a mass exodus. I expect people to wake up one day and say, "hey.. what ever happened to that 'Windows' thing that used to be everywhere?"

      * I see OpenOffice.org as a transitionary crutch. The word processing / office suite paradigm itself is quite dated and will not survive the full onset of the web as a true platform.

    130. Re:I think he's right by TheNetAvenger · · Score: 1

      Surely you jest... you can't possibly be comparing the cromagnon capabilities of cmd.exe to a real shell like csh or bash, could you? Naw, I didn't think so.

      Never even crossed my mind, but I guess it did yours. Strange...

      The original post wanted to boot windows without icons or any of the cute GUI, even in the regular non-embedded version of Windows this is one way of doing it as I suggested.

      There are other good command interpreters as you suggest, and just as I suggested using cmd.exe as your shell you can easily select one of them as your shell just as easily.

      So ya, good point, if you want a more powerful command line tool, just use it instead of cmd.exe.

      Take Care,
      The Net Avenger

    131. Re:I think he's right by DenDave · · Score: 1

      ROFL!

      --
      -if at first you don't succeed, stay the heck away from paragliding.
    132. Re:I think he's right by Anonymous Coward · · Score: 0
    133. Re:I think he's right by LinuxLuver · · Score: 1

      "...then how come you need to recompile software depending on your distro...." You do? Hardware - as in base architecture - maybe.... But not normally the distro. Binaries in RPM or DEB format will run happily on most platforms. I use Xandros 3.0 and the Xandros Networks app happily handles RPMs and DEBs.....and I have yet to have on fail to install and work. Mind you....I haven't needed to install vast amounts of additional software as the system also had pretty much everything I needed already installed.

      --
      Only boring people are ever bored.
    134. Re:I think he's right by penix1 · · Score: 1

      "Ever try to get support for Linux at all? Exactly who am I supposed to contact if I have problems?"

      That answer would be yes! You have 5 choices on who to contact. 1.) the Distro maker OR 2.) the author of the program you are having problems with OR 3.) other Linux users (through a multitude of forums) OR 4.) If you are capable, FIX IT YOURSELF! Unlike Windows, the source code is given with GPL software. OR 5.) Pay someone who is technical to fix it. (See 4.)

      B.

      --
      This is a sig. This is only a sig. Had this been an actual sig you would have been informed where to tune for more sigs.
    135. Re:I think he's right by DenDave · · Score: 1

      I must admit this problem has been improved upon dramatically, there are more repositories which are better maintained. but just consider having a Novell Suse machine and a RedHat Enterprise Desktop, for a *hacker* these systems could be considered to be compatible but for userland... nope.. and of course there are loads of tools but still the procedure is non-trivial and is more invasive than maintaining an application on two OSX machines or 2 Windows XP machines for that matter.
      This is NOT an anti-Linux troll-thread, I am a linux user myself, these points are merely because I see a problem when considering what consists a "linux platform"!! So please maintain the argument in that spirit.

      --
      -if at first you don't succeed, stay the heck away from paragliding.
    136. Re:I think he's right by Sirdar+Bey · · Score: 1

      yes. by the way, who are you and how do you know me? reply though other channels. -CSarc

    137. Re:I think he's right by man_of_mr_e · · Score: 1

      Already did. Sent you an email the other day to the account listed on your website.

    138. Re:I think he's right by Sirdar+Bey · · Score: 1

      didn't get it. maybe it was tagged as spam. can you fill out the contact form on minimalist or coinop?

    139. Re:I think he's right by Anonymous Coward · · Score: 0

      I actually think fedora could get there by redefining what we think of as a platform. With constant 6 month upgardes, what I'd like to see out of them is an suto upgrade cycle whene my version of fedora changed to the new version at the click of a button (or through a yum update, actually). It's possible, but messy. if they could clean it up we'd have a constantly updating platform. It's sort of the best of any world. A platform that is up to date but never requires you to reinstall things or lose your data.

      Probably a pipe dream, but a nice one, at that.

    140. Re:I think he's right by LinuxLuver · · Score: 1

      No problem! I view of Linux as a platform os coloured by my having used it more or less exclusively as my desktop since 1999. The first couple of years had some challenges, but the last couple of years have seen the most advanced Linux distros become as easy - or better - to install than the sole copy of WinXP Home I keep on my eldest daughter's PC. My youngest daughter has used Linux daily since she was 4 years old (games at first - then e-mail, IM and web browsing). If a user is presented with Linux first....then Windows has no real advantage.....or attraction, provided the user is able to do what they want to do on Linux....and these days the answer to that is YES for many users.

      --
      Only boring people are ever bored.
    141. Re:I think he's right by Anonymous Coward · · Score: 0

      I assume you mean QT...

    142. Re:I think he's right by m50d · · Score: 1

      No, I meant kde. But yes, Qt does include most or all of that and KDE is built upon it.

      --
      I am trolling
    143. Re:I think he's right by tokabola · · Score: 1
      Whenever I test a supposedly user friendly Linux distribution, I always try to do it like a Windows user first.

      There's part of the problem. Linux isn't Windows and shouldn't be expected to always work the exact same way. There have been quite a few studies that show people with no computer experience find Windows the hardest system to operate. While many older users will cling to the familiar (Windows), younger people, and new users, with open minds will choose the better/easier alternative. Which according to the studies is a Mac, but unless Apple releases Markon (or whatever they call OSX on iX86) Linux will be the choice for the most popular hardware platform. Nobody said Linux would take over tomorrow.

      "Okay. I want to remove a device driver.

      Why? Device drivers in Linux don't get added to the kernel tree untill they are stable. My ATI card works fine in Linux, all features enabled. Under Windows, however, I have to choose between two different drivers. One gives full support for hardware acceleration, but no TV tuner, and the other lets me watch TV, but only works with hardware acceration turned completely off. I'm glad Windows makes it somewhat easy (and a GUI isn't always easier than a CLI. Seriously, it's easier to modprobe than to navigate to the correct window to remove a Windows driver, and I don't have to reboot) to change drivers, but that's a feature I simply don't need in Linux.

      Admittedly, there is hardware that isn't easy to get working on Linux, but the majority of it simply works. Just plug it in and the distro's hardware detection app will load the correct modules for you (unless you're compiling your own kernel, which your sister probably won't be). How is it easier to have to go online to find the latest version of the driver, download it, run the installer, and hope it works?

      Linux and Windows have two very different approaches to many things, which is better is a matter of opinion and varies from issue to issue. Any blanket statement that one is better than the other shows a closed mind and limited understanding, and is inherently erroneous.

      Do you happen to know about a Linux distribution that lets me actually do system configuration without having to use the command line?

      Most modern distros can do most of the system configuration with a GUI such as Gnome's Configuration Editor. The few things you still need the CLI for are things that are over the typical users head even with a GUI. Much like most people won't ever use regedit in Windows, and shouldn't since they don't know what they're doing.

      Tommy
      --
      Open Source for Open Minds
    144. Re:I think he's right by Bush+Pig · · Score: 1

      > For them, design stability, consistency and suppport are way more important. Windows gives them that.

      Err ... the 1st of April finished a couple of weeks ago.

      --
      What a long, strange trip it's been.
    145. Re:I think he's right by Bush+Pig · · Score: 1

      Your take on static vs dynamic linking is quite reasonable in the Windows world (because of dll hell), but makes very little sense on unix systems. Generally (although perhaps not always), the different releases of dynamically-linked libraries are _guaranteed_ to have the same interface - that is, a function which exists in several versions is always going to take the same parameters, in the same order.

      If you have an earlier version than the software was compiled against, you _may_ have some issues with bugs, but it's unlikely.

      --
      What a long, strange trip it's been.
    146. Re:I think he's right by Bush+Pig · · Score: 1

      If you've never had this problem, then clearly you've never worked at a medium-to-large company with more complex requirements than the need to do a bit of word processing and maybe use a spreadsheet.

      --
      What a long, strange trip it's been.
    147. Re:I think he's right by DenDave · · Score: 1
      f a user is presented with Linux first....then Windows has no real advantage.....or attraction, provided the user is able to do what they want to do on Linux....and these days the answer to that is YES for many users.
      I agree, yet I am a proponent of standardisation and that would mean that allt he distro's maintain a common standard for dealing with packages and dependancies. Currently the *flavourisation* in Linuxland is doing what it did to Unix, albeit cheaper.. Software vendors typically only support one or a few flavours.. You'll find a Solaris binary an AIX binary a BSD binary etc... I fear that this will happen on Linux. Sure most apps will work on all distro's with or without some hacking (OpenOffice) and others may need work (Oracle)...
      --
      -if at first you don't succeed, stay the heck away from paragliding.
    148. Re:I think he's right by LinuxLuver · · Score: 1

      I agree with you, too! :-)

      However, fragmentation / forking with an Open Source OS is less likely or possible than with a proprietary one....

      I say that because the users of the OS themselves are awake to the issue and will - so far anyway - make choices that mean any definite fork will have limited appeal - and support.

      I wouldn't use a Linux that had forked in a way that prevented most programs I wanted to use from being compiled/run. I could be wrong......but I think most folks would follow the same path to the same conclusion. Backing a fork would not be in their long term interest......even if it was their present OS. The next (forked) version would be a natural departure point to return to - or remain - in the middle of the open source herd where OS compatibility is concerned.

      But I could be wrong. Wouldn't be the first time!

      --
      Only boring people are ever bored.
    149. Re:I think he's right by DenDave · · Score: 1

      Interesting because in essence, every distro is a fork... It's almost an industry term to be "mandraked"..

      --
      -if at first you don't succeed, stay the heck away from paragliding.
    150. Re:I think he's right by LinuxLuver · · Score: 1

      I guess the level of compatability is then critical. Putting files in different places doesn't make a distro a "fork" in my view.....as that can be fixed fairly easily. But if a binary won't run on it no matter how the system is otherwise configed - that would be a fork....again, in my view.... It would come down to kernels being incompatible...and staying that way permanently. As long as the main line of kernel code continues to come from one source.....and "forking" of config organisation can be undone. If need be, such a distro - is open sourced AND desireable - would find itself competing with a re-worked "mirror" from others sources who would "correct" the deviation.....and "fix" the introduced incompatibility. I offer Knoppix as an example of what is possible. The original has inspired many other versions from other sources......each highlighting some feature or function the creator considers desirable..... That would make it very hard for any one company to compell the market - in large chucks - to abandon the underlying commonality of the Linux platform via the kernel. All my opinions.....worth what you paid for them. :-)

      --
      Only boring people are ever bored.
    151. Re:I think he's right by koxkoxkox · · Score: 1

      mandrake can edit grub or lilo configuration with a GUI

  2. Trollbait by Anonymous Coward · · Score: 0, Flamebait
    What a trollbait of an article.

    A sure way to get the lunix lunatics to come out of the woodwork.

  3. Excellent Article! by bigtallmofo · · Score: 5, Funny

    Let's start with the unsensational headline of "Linux Can't Kill Windows", follow through the article to no rational arguments as to why this is, and ending with a "Stay tuned; I'll tell you all about it."

    Seems like a well-thought out article that certainly wasn't created for the purpose of increasing impressions or generating clicks to advertisers on the site.

    --
    I'm a big tall mofo.
    1. Re:Excellent Article! by leuk_he · · Score: 2, Funny

      And /. and even you who read the misses the whole point he tried to make:

      "here is only one platform that can stand toe-to-toe with Windows, and that's the combination of OS X and Java."

      All the other part is a troll/ Sarcasiscally/flaimbait material to get your attention. In other words, excellent slash front page material.

    2. Re:Excellent Article! by Anonymous Coward · · Score: 0

      "Linux Can't Kill Windows"

      BLASPHEMY!!! I shall have your first born for this treason!!!

    3. Re:Excellent Article! by TripMaster+Monkey · · Score: 3, Funny

      All the other part is a troll/ Sarcasiscally/flaimbait material to get your attention. In other words, excellent slash front page material.

      Mabye this is why I can't seem to get a submission accepted...I'm just not being inflammatory enough.

      --
      ____

      ~ |rip/\/\aster /\/\onkey

    4. Re:Excellent Article! by mallumax · · Score: 3, Informative
      "Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions. Windows wins. Linux doesn't lose, because it can continue the legacy of another nonplatform, namely Unix, that needs to be refreshed and extended."

      Linux isn't scalable ? It runs on everything from ARM to huge supercomputer clusters.

      Consistent ? I will give it to him that across distributions linux is not consistent but businesses use RHEL or Novell against which all major applications like Oracle are certified.Within these distributions things are largely consistent.

      Predictable ? What is unpredictable about Linux ?

      What does self-contained mean ?

      Doesn't this article give the feeling the author has no clue about what he is talking about and has just put together some buzzwords like scalable, self-contained to create a controversial article?

    5. Re:Excellent Article! by Anonymous Coward · · Score: 0

      Naah...it's just that your submissions are originial.

      Haven't you heard? Slashdot only accepts dupes anymore.

    6. Re:Excellent Article! by Xerp · · Score: 2, Insightful

      Indeed.

      On top a being that, it is FUD in a candy casing, this time advocating Mac OS X and Solaris.

      Wait a moment. I don't have a problem with that ;)

      But seriously, this is just word soup. A collection of marketing words and phrases neatly packaged together with little or no glue.

      Here is what my poor old brain thinks about choice components of the article:

      You can quit proclaiming Linux the Windows killer.

      I don't think many people really to proclaim that anyway. Linux is an alernative to Windows, as are many other operating systems.

      ...you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it.

      This struck me as really dumb because he makes this statement without first giving his definition of "platform". A full 4 paragraphs later, he does finally give his definition:

      An operating system is a rack into which device drivers and APIs are inserted. A platform is a rack into which applications are inserted.

      Hm. Hang on. Back in paragraph two he states:

      Linux is an operating system, a way -- and probably the best way -- to make system hardware do what it's told

      I'm not even going to bother. You can vaguely see what he is attempting to say, but it is done is such a way it makes you think the guy is nuts and doesn't know what he is talking about.

      Wait a moment ;)

    7. Re:Excellent Article! by millennial · · Score: 5, Funny

      "Self-Contained" means that everything you need should be in the operating system. Like a media player, a web browser, an e-mail client, an IM client, a basic Word(Pad) processor, a notepad...

      They're all integral parts of the OS, after all.

      --
      I am scientifically inaccurate.
    8. Re:Excellent Article! by El_Muerte_TDS · · Score: 4, Funny

      Down-time isn't predictable in Linux.

    9. Re:Excellent Article! by IWorkForMorons · · Score: 3, Funny

      Buzzwords? Inflammitory headline with no real story? Maybe he didn't write it at all.

    10. Re:Excellent Article! by MindStalker · · Score: 1, Interesting

      Hold on, yes I did not RTFA, but either way from what I've seen he states that.
      1. No matter how to package and pretty up Linux it will never be a contender.
      2. OS X could possibly be a contender.

      Does he not realize that OS X is simply a packaged up pretty version of BSD, which is almost identical besides licensing to Linux. Now given Apple does have the ability to give OSX a boost that no distrubution could match, but thats more about corperate backing, something of which IBM could potentially do with Linux, if it decided to.

      Wow, that would be interesting, to see IBM come out with an operating system marketed towards buisnesses, but based on Linux! Linux use would explode. What is that you say? They are already doing that? Oh nevermind

      PS: Yes I know IBM isn't marketing as hard as apple, but the future potential for them to do that is definatly there.

    11. Re:Excellent Article! by sammy+baby · · Score: 5, Funny
      I think you have it slightly backwards - it's the articles that are usually trollish. The writeups should be highly credulous. Here's an example:
      OMG!!! i just red that linus totally bitch slapped tridge, took his milk money, and called him a no skilz pozer! and the guy from bitkeeper wuz all like, ha ha, you suck!

      Fun for the whole family.
    12. Re:Excellent Article! by Anonymous Coward · · Score: 0

      Mabye this is why I can't seem to get a submission accepted...I'm just not being inflammatory enough.

      Going by the linked article it's even easier than that. It's blatantly obvious to me that Infoworld used a modified version of SCIgen.

      http://science.slashdot.org/article.pl?sid=05/04/1 3/1723206&tid=133&tid=146&tid=14

    13. Re:Excellent Article! by Anonymous Coward · · Score: 0, Funny

      You're also not being Roland Piquepaille enough.

    14. Re:Excellent Article! by Gr8Apes · · Score: 0, Offtopic

      So that explains my one accepted submission!!! Now that you've revealed the secret, we can expect thousands of new articles.....

      --
      The cesspool just got a check and balance.
    15. Re:Excellent Article! by bdbolton · · Score: 1

      "Consistent ? I will give it to him that across distributions linux is not consistent but businesses use RHEL or Novell against which all major applications like Oracle are certified.Within these distributions things are largely consistent."

      The author does make a good point here...

      People not in the know often find that linux is not consistent. They sit down at a Red hat box, suse box, ubuntu box and everything is different. They don't realize they are using different distributions. They may not even understand what a distribution is. They just know they are using Linux (tm).

    16. Re:Excellent Article! by thewiz · · Score: 0, Offtopic

      Mabye this is why I can't seem to get a submission accepted...I'm just not being inflammatory enough.

      Perhaps we should form a group of /.ers that have the same problem. Nothing more frustrating than to submit an article, have it rejected, then see it posted after being submitted by someone else who puts an inflammatory spin on the topic.

      And I thought /. was a "no-spin" zone; except for atomic/subatomic particles.

      --
      If "disco" means "I learn" in Latin, does "discothèque" mean "I learn technology"?
    17. Re:Excellent Article! by strider44 · · Score: 0

      ha! I'm sorry mate for not having mod points but that was exactly the thing I was thinking when reading it - "This just doesn't make sense. Surely it's randomly generated because no human with any sort of common sense wrote this!"

    18. Re:Excellent Article! by fitten · · Score: 1

      Scalable has other meanings. I doubt he was talking about hardware.

      Consistent also has other meanings. Consistency between point release versions is one that I'm fighting right now. Our software runs on set-top boxes, in effect. There were a number of version/package upgrades going from SuSE 9.0 and SuSE 9.1 to SuSE 9.2 and it severely broke a few things (such as compiles failing - changes in tools, GUI code behaving very different - changes in underlying libraries/resources, breaking/changing behaviour of some binaries we use, etc.) I've seen this happen many times but it has gotten better. I've seen OSS that was constantly updated so that it would only work with the latest/greatest of other packages so every time you wanted to upgrade that software for whatever fixes were in the newer release, you had to end up typically upgrading anywhere from one to five others.

      Predictable, will the next point release break our stuff or not?

      Self-contained I imagine means support for the common things done today out of the box. I don't know what he's talking about here... I have plenty of browsers, email clients, mp3 players, etc. out of the box on Linux.

    19. Re:Excellent Article! by sharkey · · Score: 1

      So... emacs is to be the death of Windows?

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
    20. Re:Excellent Article! by aonaran · · Score: 2, Informative

      Down-time isn't predictable in Linux. ...in case anyone missed how that was dripping with sarcasm....

      Sure it is, I predict that the next down-time for my linux webserver will be when I take it offline and bring the new machine online. After that there should be another downtime when new hardware needs to be added, other than hard drives which will no longer cause downtime thanks to my raid controller in the new machine which I was able to afford by not having to pay $300 for an OS and another $1000 for the software to run on top of that.

    21. Re:Excellent Article! by ColMustard · · Score: 1

      I stopped reading at the point you said BSD and Linux are identical except for the license, at which point I realize you have no idea what you're talking about.

      --
      Moof.
    22. Re:Excellent Article! by Rinikusu · · Score: 1

      1) I don't know his specific beef about Linux and its scalability. I do know that if you need multi-thousand node computing power, Windows is probably not your answer, either. I seem to recall that most clusters run some sort of *NIX (Linux, Solaris, OS X) or a custom OS. :: shrug ::

      2) Yes, the inconsistency between distributions is part of it, but the inconsistency between different versions of the same distribution is also an issue. I know I had tons of issues "upgrading" from version to version of Redhat years ago, has that been fixed? By far, the best distro I've had for upgradeability was Debian, but where's the Redhat-like support for debian? The company I work for has a Redhat 6.2 box. Trying to upgrade that to FC3 or RHEL would be a nightmare, but it's getting to the point where security updates are having to be patched by hand, with unknown consequences on our software. It's really "cross your fingers and hope". And from a corporate desktop standpoint: GNOME? KDE? Something else? Who's behind it? Who's not? It can be disheartening to see all the choices at times. I like GNOME for some things. I like KDE for others. Yes, I can run applications for both at the same time, but that seems like an assbackwards way of doing things.

      3) Linux is unpredictable. From scheduler changes in the middle of a kernel series, to changes in fucking "source code management" software. What Version Control software does Microsoft use for Windows? The correct answer for the people outside of microsoft is: Who fucking cares? And yet with Linux, it's a daytime soap opera. Why does this matter? Because there's a lot of Linux kernel developers out there who make it a big deal and say they can't work with it because of their ethics and would rather stand around and bitch about it rather than deal with it and move on. And that's what Linux seems to be becoming: A giant bitch-fest party. I'm sure there's lots (the majority) of developers who don't really care one way or another about GNU ethics and what not, they just want to write quality code and produce a quality product. It's the religious zealots that are vocal and really make the entire group look unstable and unfocuses. "It's gotta be free!" "No, it doesn't" "Yes, it does! I'm taking my ball away!" "We're taking our ball away, too!" Is that really what you want to rest your business plan on? A bunch of bickering anti-social primadonnas? And, add to that constantly changing driver interfaces, etc, and it can make development difficult. Sure, they could develop their own version of the kernel for their usage, right? But that requires hiring programmers, OS developers, kernel programmers, etc, you might as well just buy a closed source solution from Sun or MS and save the money.

      4) Self-contained: I take that to mean it's all under one-roof. One person dictates direction. Linus sorta does that, but there's a giant herd of cats out there determined to do something else.

      --
      If you were me, you'd be good lookin'. - six string samurai
    23. Re:Excellent Article! by Anonymous Coward · · Score: 0

      Does he not realize that OS X is simply a packaged up pretty version of BSD, which is almost identical besides licensing to Linux.

      Er, no. OS X is a completely different proprietary non-Unix operating system built on top of BSD. It has some BSD code inside it, deep down, but it is not in and of itself BSD.

      OS X is no more BSD than Windows 98 was MS-DOS.

    24. Re:Excellent Article! by realkiwi · · Score: 0

      You too! I tried submitting VIA opens source code the other day. Taco Just waited till he got the press release before publishing himself...

      Oh well. I am feeling less alone now.

      --
      realkiwi
    25. Re:Excellent Article! by Burz · · Score: 1

      Linux is consistent across distributions. It's just not perfectly consistent. Hopefully stndards bodies like LSB will increase that consistency.

      Self-contained means there is a clear dividing line between what is considered the OS (the features everyone has) and the add-ons. Linux doesn't have a line, only a statistical bell-curve of more-or-less frequently included components.

      IMHO, the GNU/Linux community puts the middle-man (the admins) first because they most closely resemble the developers. The end-users in the computing environments get left out in the cold because taking the next step to being a power user means committing yourself to learning software that will move or not even exist on another installation.

      People don't remember that Windows 3.1 had these problems because most people wanted functionality that wasn't built-in, so systems were loaded to the gills with incompatible audio, CDROM and other extensions. MS solved the problem by coming out with the Multimedia PC (MMPC) spec. which was a minimum hardware feature set that was required to support new Windows multimedia functionality.

      The Linux community needs to publish an MMPC (or Desktop Linux) spec and come up with a minimum software configuration required to run the minimum hardware config. If a distro wants to embellish on that, fine. If a distro wants to DEPART from that, fine, but they cannot use the 'MMPC' or 'DesktopLinux' sticker on their product.

    26. Re:Excellent Article! by ajs · · Score: 2, Interesting

      "I will give it to him that across distributions linux is not consistent but businesses use RHEL or Novell against which all major applications like Oracle are certified.Within these distributions things are largely consistent."

      You're correct, but let me hone that point a bit: Linux is NOT a platform. Linux is an operating system kernel, and the term loosly applied to a variety of platforms. Saying that Linux is not consistent is like saying that cars are not consistent. It's a correct statement, but also largely ignorable. Linux-based products like TiVo and RHEL can be market winners without any interest in what Linux looks like elsewhere.

      As for Linux vs. Windows: I don't think anyone who knows anything about how the OS market works is thinking Windows will be gone tomorrow or even in 10 years. However, it could well be the case that 5-10 years down the road continued pressure from Linux on the desktop and the obvious inroads that were made on the server-side will force Microsoft to assume an offensive enough stance that MacOS will have an edge, and that MacOS will then focus Microsoft's attention to the extent that certain Linux products will have an edge.

      MacOS+Linux+misc could quite realistically have a market share approaching that of Windows in 5-10 years, and that would effectively remove Microsoft's ability to make and succesfully enforce their cart-blanche demands on hardware vendors and OEMs.

    27. Re:Excellent Article! by Anonymous Coward · · Score: 0
      They sit down at a Red hat box, suse box, ubuntu box and everything is different. They don't realize they are using different distributions. They may not even understand what a distribution is.

      Good thing XP and W2K work exactly the same or Microsoft would be toast.

    28. Re:Excellent Article! by _xeno_ · · Score: 3, Funny

      Of course it is, but like all things in Linux, it requires a bit of effort to get working.

      Just add "0 0 * * * /sbin/poweroff" to your Crontab, and then you'll get your daily downtime, right on schedule too! More dedicated users may want to write a custom script to directly tell the UPS to poweroff, thereby allowing for the expected corrupted hard drives and fscks.

      --
      You are in a maze of twisty little relative jumps, all alike.
    29. Re:Excellent Article! by say · · Score: 1

      From scheduler changes in the middle of a kernel series, to changes in fucking "source code management" software. What Version Control software does Microsoft use for Windows? The correct answer for the people outside of microsoft is: Who fucking cares?

      What are you suggesting here? That the source code management software debate makes linux as such less predictable? This makes no sense. Just because every decision concerning linux is public, doesn't make it less predictable. I'm sure Microsoft people discuss tools as well.

      You argue that the ethics of linux developers hamper development. Well, maybe. I think recent history proves otherwise. However, it doesn't harm predictability. Windows isn't particularily predictable - it doesn't even have a standard as platform. Linux is POSIX-like. That will never change.

      If you go back to a linux system anno 1996, and a Windows system anno 1996 (Win95), I think it's quite clear that linux (the kernel and base-tools, not the user level programs) have changed far less than Windows. In other words, more predictable.

      --
      Roses are #FF0000, violets are #0000FF, all my base are belong to you
    30. Re:Excellent Article! by Burz · · Score: 1

      RedHat has been notorious for breaking stuff in their upgrades. Granted it was usually intended as a way to improve the feature being broken.

      Last year I tried to set up a RedHat 9 system to run VMWare 3.2, Rational Rose 2003 and one other app I can't recall now. None of them would work, even with extensive tweaking. Trying RedHat 8 and FC1 didn't help either.

      I had Debian-based Xandros at home and knew the software ran fine from all the way back in the Corel days, so I installed Debian Sarge at work and bingo... my apps all worked.

      I'll never go back to a RedHat/Fedora type distro for the desktop.

    31. Re:Excellent Article! by Rinikusu · · Score: 1

      /* What are you suggesting here? That the source code management software debate makes linux as such less predictable? This makes no sense. */

      No, it makes a LOT of sense. When the decision to move to a non-Free (speech) was made, there was a huge outcry from "ethical" developers who were literally threatening to jump ship over it. That's the kind of stuff that makes the entire community look flakey and, frankly, foolish. Even if their reasoning is CORRECT (and it was). It's a public admission that there's not a unified front that the kernel developers are fighting along, and the in-fighting gives the public the feeling that "those linux guys" don't have their shit all together. It looks unstable, and unpredictable, becuase who knows what's going to happen? Are some of the top developers going to quit?

      So, yes, it does make a lot of sense.

      --
      If you were me, you'd be good lookin'. - six string samurai
    32. Re:Excellent Article! by Rinikusu · · Score: 1

      forgot to address another point:

      As a developer in a private company, yes, we do discuss tools. We don't have public arguments about them. These are details our customers don't need to know, because it doesn't directly impact them (or at least, we don't let them know if it does). Keep your dirty laundry in-house, present a unified front to the world.

      --
      If you were me, you'd be good lookin'. - six string samurai
    33. Re:Excellent Article! by SillyNickName4me · · Score: 1

      > OS X is no more BSD than Windows 98 was MS-DOS.

      Hahahhaa hahaha

      I wonder if you realize how true that one is.. it refutes the remainder of your post tho.

    34. Re:Excellent Article! by MindStalker · · Score: 1

      OS X is to BSH what KDE is to LINUX.

      OS X is a window manager and graphic library, not an operating system.

    35. Re:Excellent Article! by SillyNickName4me · · Score: 1

      > Predictable, will the next point release break our stuff or not?

      Which is still better then 'Will the next fix to the current version break our stuff or not?' (XP SP2 comes to mind)

    36. Re:Excellent Article! by 4of12 · · Score: 1
      "Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions. Windows ..."

      provides $WANT_YOU_WANT right now in 1996!

      Again, in 1999.

      And again in 2003!

      But wait, there's more!

      Sigh, and I thought I had it all in 1996!

      --
      "Provided by the management for your protection."
    37. Re:Excellent Article! by vasah20 · · Score: 1

      +4 Funny?

      Everyone's asking how to make Linux on the desktop more like Windows on the desktop, and this is a good start.

      If anything, this should be +4 Insightful.

    38. Re:Excellent Article! by dmaxwell · · Score: 3, Funny

      Use /dev/random to generate the scheduling numbers and then we can really start getting that Windows feeling.

    39. Re:Excellent Article! by Anonymous Coward · · Score: 0

      There is something more than having just a stable OS. It's called Support Desk.

      If I am a software product vendor, I'll be hesitent to support Linux for my product - just because there is no formal Help Desk/Support Desk.

      If there's any OS related issue, it's easy with Windows/Solaris. Call Microsoft/Sun and someone looks at the issue with you. With linux? Keep googling - sucks.

    40. Re:Excellent Article! by fire-eyes · · Score: 1

      that certainly wasn't created for the purpose of increasing impressions or generating clicks to advertisers on the site.

      Rather like your sig.

      --
      -- Note: If you don't agree with me, don't bother replying. I won't read it.
    41. Re:Excellent Article! by default+luser · · Score: 5, Insightful

      Does he not realize that OS X is simply a packaged up pretty version of BSD, which is almost identical besides licensing to Linux.

      False analogy.

      Let me make it clearer to you by making the following two statements:

      1. Linux revolves around the kernel. Every time you muck with the kernel to bring about yet another set of "gee whiz bang" features, dozens of things are broken.

      2. Mac OS X and Windows revolve around the interface. On the library level, new interfaces are added, but older ones are still supported for a surprisingly long time (see Carbon / Classic Runtime Environment for Mac OS X, or Win9x Compatibility Mode / Application Compatibility Toolkit for Windows 2000 / XP). Certainly, support is eventually dropped, but the pace is normally quite slow for popular APIs.

      On a visual interface level, both Apple and MS try to keep consistency in the interface. Sure, you'll see major changes in interface every 5-10 years (Windows 95, Windows XP, Mac OS X), but that's a pace most people can cope with, and they try not to change EVERYTHING in the process. Linux, on the other hand: for any random distro, you can't be assurred GUI consistency.

      Tell me, how many people really know if there were major kernel revisions between all the Mac OX X releases? I imagine not many, because programmers don't have to care. That's the beauty of revolving around interfaces.

      Until Linux stops revolving around the kernel, it will never break out of the server niche.

      --

      Man is the animal that laughs.
      And occasionally whores for Karma.

    42. Re:Excellent Article! by default+luser · · Score: 1

      I'd mod you up if I had points. Bravo!

      --

      Man is the animal that laughs.
      And occasionally whores for Karma.

    43. Re:Excellent Article! by bgbarcus · · Score: 1

      I so wanted to experience that hard drive corruption but my darned journaling file system thwarted me.

    44. Re:Excellent Article! by EvilTwinSkippy · · Score: 1
      There is a school of thought that says you could could always freeze the version of the Kernel you use, and wrap an interface around it.

      Seriously, developers are still putting patches out for the 2.2 series kernels. I have quite a few boxen that, once set up, have run for years, requiring only security patches.

      No, the only thing that is keeping Linux off the desktop is a company to employ it, and infuse their product with the same level of advertising as Apple and Microsoft.

      Seriously, beyond IBM's commercials (pitching Linux as a server mind you), nobody advertises Linux. Now, sit through a week of TV without seeing a Microsoft or Apple Ad.

      The defense rests.

      --
      "Learning is not compulsory... neither is survival."
      --Dr.W.Edwards Deming
    45. Re:Excellent Article! by smileaf · · Score: 0

      Maybe a custom script to grab a few bytes out of urandom and then randomly write them to your HD in various spots would help you overcome this obstacle!

    46. Re:Excellent Article! by MoneyT · · Score: 1

      They're more consistant than between varios linux distros. Around here, we have 3 various windows configs (XP, XP SP2, and Win2k), and 2 Linux configs (RedHat, and some random distro that I don't even know the name of) .

      To switcch between each of the windows configurations, I just need to log in and recall that in windows XP, the start menu is even uglier.

      When moving to a linux box, first RedHat isn't like windows. But that's OK, it's a new OS. But then to switch to the other distro, now I don't even have a task bar, I have some universal control menu that shows up when I right click, I have to tell the OS where I want each window to be created, and I have no direct access to what I normaly call my desktop.

      --
      T Money
      World Domination with a plastic spoon since 1984
    47. Re:Excellent Article! by Taladar · · Score: 1

      Don't forget to use an un-journaled filesystem, otherwise you might have problems achieving the desired data corruption on UPS-powerdown.

    48. Re:Excellent Article! by Taladar · · Score: 1

      There is no "in-house" for Linux. It is Open Source and is developed by people around the world. Every discussion about it that is relevant to more than a hand full of people must be public because you would never get a date and time where everyone is available.

    49. Re:Excellent Article! by killjoe · · Score: 1

      "Self-Contained" means that everything you need should be in the operating system. Like a media player, a web browser, an e-mail client, an IM client, a basic Word(Pad) processor, a notepad..."

      And which linux distro does not have that?

      --
      evil is as evil does
    50. Re:Excellent Article! by mattyrobinson69 · · Score: 1

      They only stuff that breaks when you upgrade the linux kernel is kernel modules compiled against the old kernel (so you have to run vmware-config.pl, so what?)

      Nothing in KDE breaks between kernel updates (i used the exact same version of kde on 2.4.x and 2.6.x when 2.6 was new on slackware.

      Linux is still moving quickly - im really looking forward to the fuse patches which are candidates for inclusion in 2.6.12 (the next x.x.*.x version) which makes userspace filesystems such as FTPFS and SSHFS possible.

      I decided to move to kubuntu from gentoo to see if stuff can just work and be as feature-filled as i had gentoo, and (apart from relying on other people's binaries[1]) it does.

      [1]: i miss knowing if x was compiled with support for y, but ah well - everything worked so far.

    51. Re:Excellent Article! by Callitrax · · Score: 1

      Consistent - okay I'll bite.

      How about a consistent driver interface so when I update my kernel I don't have to reinstall my NVidia drivers. Or pray that there is a version of the RAID card driver out there somewhere. Or recompile ivtv and cross my fingers.

      I can update Windows XP from a base install to SP2 and all of my hardware still functions, and if I disable the NX/XD functionality so does all software.

      And no, NVidia shouldn't have to open source their drivers. They have spent hundreds of millions of dollars on the hardware and supporting drivers, and Open-Sourcing it would give away a significant advantage they may have over their competition (OpenGL performance or explicit hardware details). Plus some code in the drivers is licensed from other companies.

      Now I like Linux and have two linux computers (server + pvr) at home, but it seriously pisses me off from time to time.

    52. Re:Excellent Article! by Lemmy+Caution · · Score: 1

      It really amazes me how misguided some people are about anything but the one aspect of the field they may know something about. As if "advertising" was this magic wand separating success from failure.

      About 14 years ago, another operating system enjoyed some of the most impressive advertising efforts imaginable: OS/2. Billboards and posters were everywhere, there were televisions commericals advertising it. IBM sponsored the Aloha Bowl and festooned it with OS/2 material. And, on top of all this, it was a good operating system.

      It still failed.

      Computer users invest a great deal of cognitive capacity in buiding a model of the way to do the work they want to do, and an interface that meets that model will not be abandoned lightly. There are dozens of other bits of familiarity that are vital to a user, from knowing where the word processing software is, to being able to download small apps by oneself. There's a vast real investment in learning the mainstream productivity applications (Office, etc.) that pervades the labor pool.

      There are other elements of useability that your solution misses: straightforward introduction of new hardware, for example. The original article was correct: Linux is not a platform, it is a kernel. I, too, have systems that are still running on 2.2 kernels. But I haven't tried to attach any new hardware to them, either, and they are pretty old machines. That's not desktop material. (And, of vital importance to commercial users, the hardware is far out of warranty.)

      GNOME and KDE are noble efforts to begin with a solid user experience and work back to being a full-fledged platform, but the fact that there are already 2 of them is a bad sign. There are already competing attempts to brand and market linux -- and they tend to compete with each other, confusing the market even more.

      I'm not an Apple fan by any means, but I think he's correct: OS X is the strongest contender to really unseat Windows.

    53. Re:Excellent Article! by mattyrobinson69 · · Score: 1

      you missed something:

      * * * * * root sh /root/bin/consume_memory.sh

      also, your line should be:
      0 0 * * * root "init 1 ; sleep 5m ; init 3"
      in order to properly simulate the downtime with no administrator input (replace 3 for 4 or 5 (depending on distro) for the desktop wde*)

      *wde: windows downtime emulation

      note - ive never tried to string commands together from my cronttab so test that out before running it on your production server. you also might want to write a script to hog memory in /root/bin/consume_memory.sh

    54. Re:Excellent Article! by 51mon · · Score: 1

      No you have to use /dev/urandom to remove random bits of files under /etc to simulate the "disk filled up whilst applying this service pack despite it claiming to have enough space before hand" feel you get with a registry.

      Bitter me --- it was only another two days of my life in servitude to the evil empire.

    55. Re:Excellent Article! by 51mon · · Score: 1

      "Is that really what you want to rest your business plan on? A bunch of bickering anti-social primadonnas?"

      And worse still most of them have a day job at proprietary software houses, where of course their bickering and internal politics never affects the quality of the end product. And even if it did you'd never get to hear about it till support is dropped. Is that what you want to base your business plan on?

      Humans - so bloody unreliable....

    56. Re:Excellent Article! by mattyrobinson69 · · Score: 1

      /dev/urandom would give more truely random behaviour. here's a something for the crontab:

      i tried to write a script but i couldn't work out how to get a number from 1 to ${number of lines in /var/slocate/slocate.db} from urandom. here's pseudocode for you:

      randomnumber = get random number from /dev/urandom
      updatedb
      loop through each line of /var/slocate/slocate.db
      if (linenumber == randomnumber) {
      cat "gueagbgreage54%£%£!Gbtbt$£T£VVfvrferfwWWE^^^$$" >> $file
      }

      also put this in the crontab:

      47 6 * * 7 root "mdkir /dev/hda1 ; mount /dev/hda1 /hda1 ; fsck /dev/hda1 yes ; umount -f /dev/hda1"

      alternatively:
      47 6 * * 7 root "fsck /dev/hda1 yes & sleep 2s ; poweroff"

      which will win? fsck or poweroff?

      obviously adjust the 2s as you see fit to give fsck a chance.

    57. Re:Excellent Article! by einhverfr · · Score: 1

      More dedicated users may want to write custom scripts to send lots of file write operations to their hard disks during the power off. This will help add additional hard drive corruption.

      Oh, and be sure to use IDE drives since they are less predictable than SCSI drives with regard to fsync().

      --

      LedgerSMB: Open source Accounting/ERP
    58. Re:Excellent Article! by ckaminski · · Score: 1

      OS/2 failed because A) the marketing campaign sucked. OS/2 Warp as in hippy as opposed to OS/2 Warp as in Warp 9 FAST and B) Microsoft's illegal tying and licensing agreements. B) is still keeping Linux off the radar.

      The whole KDE/GNome thing tho pisses me off... two great toolkits, two great memory hogs. I run a mostly gnome based desktop, but the few KDE apps I use (Yast2, K3B) refuse to kill off the kde processes when I'm done.

      OS X on Intel would rock. I'd buy it in a heartbeat. Someday, maybe once I get another 4 GB of RAM in my machine, I'll pick up a Powerbook.

    59. Re:Excellent Article! by megarich · · Score: 1
      THANK YOU. I didn't read the article but the paragraph describing the article contained nothing but FUD. For that reason I didn't read the article knowing it won't say anything but crap

      With that being said I don't completely disagree that Linux can't kill Windows. At this stage of the game, I feel only Windows can kill Windows. That doesn't mean eitehr Linux won't diminish Window's market share. I'll just wait and see how everything plays out....

    60. Re:Excellent Article! by ckaminski · · Score: 1

      mmm, yeah. Don't be a moron like me and take packages from SuSE 9.1 and install them on SuSE 8.2. Bad, evil gnome destruction. Learn the hard way, I suppose.

    61. Re:Excellent Article! by Anonymous Coward · · Score: 0
      "Self-Contained" means that everything you need should be in the operating system. Like a media player, a web browser, an e-mail client, an IM client, a basic Word(Pad) processor, a notepad...

      So we must be promoting Debian again and it's all an apt-get away.
      So what is self contained again?
    62. Re:Excellent Article! by Anonymous Coward · · Score: 0

      Perhaps you're thinking of Aqua, or just trolling.

      In either case, "OS X" is just a label that Apple's marketing department applies to a set of software. As they've defined it --- and it's their label to define --- "OS X" does encompass everything from an OS kernel to the pretty GUI. A little hint about their intent for the label might be the letters 'O' and 'S' in "OS X".

      No mod points today, so this will have to do in place of sending your post to the basement...

    63. Re:Excellent Article! by mattyrobinson69 · · Score: 1

      crappy slashcode stole my < - i meant fstab /dev/hda1 < yes

    64. Re:Excellent Article! by Anonymous Coward · · Score: 0
      OS/2 failed because it had higher resource requirements, poorer hardware compatibility and poorer compability with legacy DOS/Win16 software. These were necessary to design a robust OS, and Windows NT failed to take off until 2000/XP for the same reasons.

      Windows 95 was technically ugly, and technically inferior to both OS/2 and Windows NT, but it was exactly what PC users at the time needed. It allowed legacy device drivers and applications to run reasonably well, where as OS/2 and NT required more RAM (expensive in those days), couldn't use any legacy device drivers, and ran legacy applications (especially DOS applications) noticably more slowly.

      In terms of the market, Windows 95 won because it better met the requirements of the time than either OS/2 or Windows NT. No advertising campaign would have changed that, and Microsoft's tying was in the opposite direction: tying new products to the already successful/monopoly Windows product in order to give the new products an unfair advantage.

    65. Re:Excellent Article! by Lemmy+Caution · · Score: 1

      OS X will not come to Intel as a viable product. If OS X ends up eroding Window's lead, it will be on Apple hardware. That is, in a sense, its strength as well as its weakness: it extends the uniformity of the platform onto hardware.

      OS/2 failed because people do not buy operating systems, at least not on the scale that would be required to reach "tipping point."

    66. Re:Excellent Article! by Anonymous Coward · · Score: 0
      A bit ironic since Windows NT has actually had a journalled file system (NTFS) since it was first released in 1993, where as Linux only recently got into the game.

      I'm sure FAT, especially under Windows 9x, was prone to corruption, but I never really experienced the 'pleasure' of using such systems much. ;) I have had drive corruption under Linux with ext2, but not under BSD FFS (which uses either synchronous metadata updates or soft updates to maintain consistency), NTFS (journalled) or ext3 (journalled).

    67. Re:Excellent Article! by Citizen+of+Earth · · Score: 1

      Tell me, how many people really know if there were major kernel revisions between all the Mac OX X releases? I imagine not many, because programmers don't have to care. That's the beauty of revolving around interfaces.

      I think there was a big kernel change in recent memory between Mac OS 9 and OS X.

    68. Re:Excellent Article! by Anonymous Coward · · Score: 0
      Windows isn't particularily predictable - it doesn't even have a standard as platform. Linux is POSIX-like. That will never change.

      Without any official guarantee that Linux complies with POSIX (or UNIX), what is that really worth? Moreover, suppose Linus Torvalds strongly disagrees with some particular addition to POSIX? Do you think that that addition will make it into Linux?

      Even if Linux were guaranteed to comply fully with POSIX, the scope of the standard is extremely narrow in terms of what modern systems (e.g. a Linux distribution, complete with GUI) do. Microsoft Windows even supports POSIX, at least on 2000, XP Professional and 2003, with the Interix subsystem in Services for UNIX. It was officially certified to comply with the UNIX standard at some point a few years ago. (The UNIX standard is mostly interchangeable with POSIX, but has at least traditionally been more freely available. On the other hand, the 'UNIX' name is trademarked, so that name can't be used without official certification by The Open Group that the system does in fact comply with the standard.)

      I tend to support open standards, but given that POSIX was essentially a description of an existing system (UNIX/BSD), and thus represents one system, I'm not sure its value is that high. Standards are most valuable where heterogeneous systems have to interoperate (eg BSD sockets), but writing software for POSIX is essentially writing it for one particular system only (a UNIX-like system).

      As I said, I do generally support open standards, so if I'm missing some particular value of POSIX, I'd like to hear it.

      If you go back to a linux system anno 1996, and a Windows system anno 1996 (Win95), I think it's quite clear that linux (the kernel and base-tools, not the user level programs) have changed far less than Windows.

      Well, Windows today is a derivative of Windows NT (originally NT OS/2), not DOS/Windows (Windows 1.0-Me), so you're really comparing two completely different operating systems which happen to both implement Win32, and which Microsoft sell under the same brand name.

      If you look at the kernel architecture of Windows NT in 1993 (or even the technical design information from the late 1980s), it's very close to what exists today. From the beginning it was a portable system written in C, with features like (kernel) threads, SMP, a journalled file system, ACLs, multiple environent subsystems (Win32, POSIX/Interix), etc. The same can't be said of Linux, BSD or UNIX, but in fairness to the latter two (especially UNIX), they're much older, so obviously they couldn't have used ideas that hadn't been invented yet.

    69. Re:Excellent Article! by Anonymous Coward · · Score: 0

      I think what it really means is that all the basic parts of the system, from the kernel to the GUI, are one package, developed and supported by a single organisation.

    70. Re:Excellent Article! by Anonymous Coward · · Score: 0
      To switcch between each of the windows configurations, I just need to log in and recall that in windows XP, the start menu is even uglier.

      The XP start menu can even be changed back to the 2000 style. These things are important to organisations (like the university I attend) where there is a wish to upgrade, for example, but not to retrain staff, students, etc.

    71. Re:Excellent Article! by xchino · · Score: 1

      "1. Linux revolves around the kernel. Every time you muck with the kernel to bring about yet another set of "gee whiz bang" features, dozens of things are broken."

      Funny, I was able to upgrade from 2.4 to 2.6 without a single thing being broken. All of my applications still work and look the EXACT same as they did before I updated. This may not be true for everyone, but nor is it true for everyone that an Windows or OSX update doesn't break anything.

      "2. On the library level, new interfaces are added, but older ones are still supported for a surprisingly long time (see Carbon / Classic Runtime Environment for Mac OS X, or Win9x Compatibility Mode / Application Compatibility Toolkit for Windows 2000 / XP). Certainly, support is eventually dropped, but the pace is normally quite slow for popular APIs."

      This is no different in Linux than it is in BSD, or OSX, or Windows, or ANY OPERATING SYSTEM. New interfaces are added at the library level, (ie GTK2), while support remains for the older one (GTK).

      "On a visual interface level, both Apple and MS try to keep consistency in the interface. Sure, you'll see major changes in interface every 5-10 years (Windows 95, Windows XP, Mac OS X), but that's a pace most people can cope with, and they try not to change EVERYTHING in the process. Linux, on the other hand: for any random distro, you can't be assurred GUI consistency."

      No you cant be assured GUI consistency b/w Linux distros. That's about as ridiculous as saying you expect GUI consistency b/w Windows and OSX. There is no ONE TRUE DESKTOP in Linux and that's an extreme advantage. You want consistency in your GUI just STICK TO THE SAME DISTRO.

      "Until Linux stops revolving around the kernel, it will never break out of the server niche."

      How exactly is Linux going to stop "revolving" around the kernel, when all Linux is IS the kernel. I hope you dont mean applications revolve around the kernel because that's even dumber. Do you think KDE or Gnome or bash or just about ANY major applications are built around the Linux kernel? Do you not realize that you can run KDE or Gnome on BSD, Linux, OSX, Windows, or just about anything? This is because they DONT REVOLVE AROUND THE INDIVIDUAL OS BUT IMPLEMENT STANDARDS. Thusly the same software can be built on any platform supporting this "interface" regardless of development practices or quirks of the underlying operating system. I really don't know how your post got modded up, it's a bunch of rubbish.

      --
      Everyone is entitled to their own opinion. It's just that yours is stupid.
    72. Re:Excellent Article! by jc42 · · Score: 1

      Keep your dirty laundry in-house, present a unified front to the world.

      And, as a developer, this is exactly why I repeatedly advise against building on proprietary platforms. That "dirty laundry" is exactly the stuff that's constantly biting me when I'm just trying to get my code to work. The worst kind of bug is when some "system" component doesn't do what I expected, and I can't tell just what it's actually doing . The reason that I can't tell is that the turkeys at the vendor refuse to admit to their "dirty laundry". The information I need is hidden behind a brick wall.

      The Open Source world doesn't work like this. Sure, I get blown off a lot by the people in newsgroups and mailing lists. But I can always resort to the source code, do a bit of tracing, and find out exactly how the docs have lied to me. Sometimes I can fix a bug and submit it, which I can't do with proprietary software.

      Anyway, thanks for the elegant expression of why most proprietary systems get it wrong.

      --
      Those who do study history are doomed to stand helplessly by while everyone else repeats it.
    73. Re:Excellent Article! by zborgerd · · Score: 1

      What you say is not possible. Linux will never stop "revolving" around the kernel, because (GNU/)Linux *IS* the kernel. The other stuff, on top of it, is not.

    74. Re:Excellent Article! by Ogerman · · Score: 1

      Unlike other posters, I'll give you the benefit of the doubt that when you say "Linux" you really mean "Open Source desktop software distributions that may use Linux at their base" I often use the same sloppy terminology, so who cares.

      2. Mac OS X and Windows revolve around the interface. On the library level, new interfaces are added, but older ones are still supported for a surprisingly long time (see Carbon / Classic Runtime Environment for Mac OS X, or Win9x Compatibility Mode / Application Compatibility Toolkit for Windows 2000 / XP). Certainly, support is eventually dropped, but the pace is normally quite slow for popular APIs.

      If you develop with cross-platform libraries, as you should unless you have a really special need, then all desktop platforms "revolve around the interface." In fact, the added layer of abstraction allows you to leverage the same consistency to all platforms. Qt, Gtk2, and Java/SWT are some good choices.

      Now, if you're talking about desktop environment GUI consistency, well.. there is simply no such thing. But do note that the gradual evolution of KDE over the last 10 years has been no more dramatic than Windows95 through XP.

      And of course, looking towards the future, the web is the new platform of consistency. "Linux" will not likely beat Windows by replacing it as a desktop platform. The desktop platform will just become increasingly irrelevant and Linux will be left as the defacto choice simply because it is the cheapest way to get cheap hardware on the web reliably. Cross-platform libraries will take care of all the rest -- whether Java or .NET/Mono or Qt or Gtk2 or any combination thereof.

    75. Re:Excellent Article! by Anonymous Coward · · Score: 0

      If the world were rid of large corporations attempting to quash any and all open source competition then we wouldn't need such nepotistic software bundling.

      IMHO, "integral parts of the OS" involve basic hardware availability and functionality. I don't want my OS adding any old stray app they can just because 2 CDs sounds better than 1 at the stockholder meeting.

    76. Re:Excellent Article! by say · · Score: 1

      It is a _world_ of difference between _looking_ unstable and unpredictable, and actually being unstable and unpredictable. If companies think public discussions on important topics concerning development looks unstable and unpredictable, they are making bad business decisions.

      --
      Roses are #FF0000, violets are #0000FF, all my base are belong to you
  4. Long term impact by Max+Romantschuk · · Score: 4, Insightful

    I didn't read the article.

    But history has shown that the short term impact of most new things tend to be over-estimated, whereas the long term impact tends to be under-estimated.

    Who knows where Linux will be in 20 years? I sure as hell don't, but I have a rather optimistic view.

    --
    .: Max Romantschuk :: http://max.romantschuk.fi/
    1. Re:Long term impact by latroM · · Score: 1

      Who knows where Linux will be in 20 years? I sure as hell don't, but I have a rather optimistic view.

      It will be obsoleted by the Hurd. I would be more interested in the advancement of Free Software.

    2. Re:Long term impact by Anonymous Coward · · Score: 2, Funny

      I didn't read the article.

      you must be old here.

    3. Re:Long term impact by Anonymous Coward · · Score: 2, Interesting

      History has also shown that advertising/marketing is key.

      This requires a brand, a singular brand.

      Will the various distros of Linux actually be its downfall?

    4. Re:Long term impact by bahwi · · Score: 1

      Hey, you can't break up Ma Bell, it's just too big of a company! It'll never happen. Impossible.

      Oh, wait...

    5. Re:Long term impact by OscarGunther · · Score: 1

      Agreed. And the best way to get a geek to do something is to tell him it's impossible. The next twenty years should be interesting.

    6. Re:Long term impact by tm2b · · Score: 4, Funny
      Who knows where Linux will be in 20 years?

      It will be obsoleted by the Hurd. I would be more interested in the advancement of Free Software.
      The first time I heard someone talking about how the HURD would kick every other Unix's ass was from RMS at a party... in 1990.
      --
      "It is our blasphemy which has made us great, and will sustain us, and which the gods secretly admire in us." - Zelazny
    7. Re:Long term impact by Vinnie_333 · · Score: 5, Funny
      Who knows where Linux will be in 20 years?

      It will be replaced by mentats.

      --

      "We shall party like the Greeks of old! You know the ones I mean." - HedonismBot
    8. Re:Long term impact by andreyw · · Score: 0

      +3 Obscure. +5 Funny.

    9. Re:Long term impact by gl4ss · · Score: 1

      ... and since when has superiority anything to do with market adaptation?-)

      --
      world was created 5 seconds before this post as it is.
    10. Re:Long term impact by marcosdumay · · Score: 1

      Even if Hurd is usable in 20 years (I hope it is), it will not replace Linux. Hurd is a slow but (potentialy) full of features system, this is good for desktops and reserach, but bad for servers.

    11. Re:Long term impact by Anonymous Coward · · Score: 0

      Never heard the term before but it's actually pretty cool.

    12. Re:Long term impact by hawkeye_82 · · Score: 1, Funny

      ..... would kick every other Unix's ass was from RMS at a party... in 1990

      My God!!! RMS was at a party???

    13. Re:Long term impact by caluml · · Score: 4, Funny

      You party with RMS? That's either cool, or very, very sad. :)

    14. Re:Long term impact by Anonymous Coward · · Score: 0

      What's obscure about that? We're all nerds here, right? Surely we've all read the basic texts of the church of nerdiness!

    15. Re:Long term impact by Jason+Earl · · Score: 1

      Exactly. Every time Microsoft comes out with a new version of Windows Linux will be there to pick up stragglers. This will especially be the case if Microsoft goes out of its way to put pressure on existing customers. Linux is making fairly amazing strides, and it comes at a price that can't be beat. Eventually both consumers and OEMs are going to wonder why exactly they are paying money for Windows.

      Heck, the economics are all in Linux's favor. Even now the only company that makes money in the PC business is Microsoft, the hardware manufacturers basically exist at Microsoft's pleasure. This means that any new company that wants to break into the game has little choice but to use Linux. That's why when Wal-Mart wanted to undercut Dell's prices they used Linux. Even in the first world "good enough" at the lowest price tends to win in the long run, and in the third world (where most of the growth is supposed to occur over the next couple of decades) the price of Windows is a significant investment. In the long run I think that the Wal-Marts and Lenovos of the world are going to win out.

      And that's the case even if Microsoft doesn't go out of its way to infuriate its customers. If Microsoft makes its DRM more intrusive to placate Hollywood, for example, then Linux will win converts. If Microsoft steps up anti-piracy tactics to combat piracy in the third world then Windows will actually become less useful to a large portion of the Windows userbase, Linux will win converts in these cases as well.

      The thing to remember is that Windows has to generate obscene amounts of revenue just to survive. If everyone decides to stick with Windows XP, for example, Microsoft is just as screwed as if everyone switched to Linux. Microsoft not only has to keep the upgrade treadmill running smoothly, but they have to do it with increasing pressure from Free Software. Things are only going to get more difficult in the long run for Microsoft.

    16. Re:Long term impact by cabazorro · · Score: 1

      I don't know but Ill put my hands in the fire for Linux and say:
      I will install the Latest Linux distro in 2025.
      Open a Shell.
      Type the ls command to the directory I created TODAY.
      edit my Makefile that I created TODAY by typing
      >vi Makefile

      edit, modify, save it.. exactly the same way I edited a file in UNIX in 1985 and exactly the same way 20 years from now.
      By then XP will be long death and probably Longhorn
      too.
      Longhorn righ now is struggling like hell with the idiociy of non-case-sensitive filename
      legacy and assigning letters to volumes...idiocy.
      How can I manage resources seamlessy over the net??
      Unix has been doing that for a while now.
      The UNIX architecture not only survives but
      thrives with Mac OSX and Linux while Windows OSes die horrible
      deaths and get resucitated as fearsome goblings
      and zombies each one harder to kill (legacy crap) and to contain .asp .com .net

      --
      - these are not the droids you are looking for -
    17. Re:Long term impact by Trepalium · · Score: 1

      No one ever got fired for buying IBM^WMicrosoft. No one could cause IBM^WMicrosoft to lose their position in the market.

      --
      I used up all my sick days, so I'm calling in dead.
    18. Re:Long term impact by Anonymous Coward · · Score: 0

      How do I play FPS games then?

    19. Re:Long term impact by ClosedSource · · Score: 1

      "But history has shown that the short term impact of most new things tend to be over-estimated, whereas the long term impact tends to be under-estimated."

      That's why we should all be using "Push" technology any day now.

    20. Re:Long term impact by Anonymous Coward · · Score: 0

      "Every time Microsoft comes out with a new version of Windows Linux will be there to pick up stragglers."

      Not if the stragglers are avoiding the new version because of hardware limitations. Every time a major version of Linux comes out, the hardware requirements go up just like Windows. Linux may be one generation behind on hardware requirements, but the days of running Linux on the old machines in the closet has long since passed.

    21. Re:Long term impact by Anonymous Coward · · Score: 0

      "edit, modify, save it.. exactly the same way I edited a file in UNIX in 1985 and exactly the same way 20 years from now."

      Now that's progress! I'll bet your Duran Duran LP is still playing on your record player in the background too.

    22. Re:Long term impact by transops.net · · Score: 1

      Now that's a low UID if ever I saw one... good to see ya. :).



    23. Re:Long term impact by Jason+Earl · · Score: 1

      Not if the stragglers are avoiding the new version because of hardware limitations. Every time a major version of Linux comes out, the hardware requirements go up just like Windows. Linux may be one generation behind on hardware requirements, but the days of running Linux on the old machines in the closet has long since passed.

      Yes, hardware continues to be an issue for Linux, but it certainly isn't the issue that it was even five years ago. I started using Linux on my desktop in 1995, and back then you basically had to go to a computer parts store with a specific list of properly supported parts, and you could basically forget installing Linux on a laptop. Nowadays you can order Linux boxes (including laptops) pre-installed from all sorts of vendors (including Walmart.com). More importantly, Linux is becoming a big enough market that hardware manufacturers *have* to care about it. This is especially true on the low end, and in third world countries (once again, that's where most of the growth in the PC industry is expected to come from over the next decade or so).

    24. Re:Long term impact by Anonymous Coward · · Score: 0

      Most major distributions have a slew of window managers one click away in their default login manager configuration (gdm and kdm certainly do). IME (and I'm no expert), most of the bloat is in Gnome and KDE.

    25. Re:Long term impact by tm2b · · Score: 1
      You party with RMS? That's either cool, or very, very sad. :)
      Eh, probably both and neither. It was a large internet geek community party, and I was visiting some friends in Boston. It wasn't that big a community, back before the web, especially if you were at or near MIT, CMU, or one of the other universities that were really pushing the net hard.

      If you see RMS at a party or a science fiction convention, for the love of all that is good and right, do not let him sing to you. Unless he'll do the Death Metal Remix.
      --
      "It is our blasphemy which has made us great, and will sustain us, and which the gods secretly admire in us." - Zelazny
    26. Re:Long term impact by Anonymous Coward · · Score: 0

      It was a LAN party.

  5. Huh? by Quixote · · Score: 1, Insightful
    Show me charts and stats and benchmarks that prove Linux superior to Windows in every measure and I'll not argue with you.

    Show me charts and stats and benchmarks that prove Windows superior to Linux in every measure and I'll agree with you.

    1. Re:Huh? by chefren · · Score: 1

      ..but Windows has the market share so it's Linux that will have to be better.

    2. Re:Huh? by Chewbacon · · Score: 1

      In every measure? What about the ones that count? I'm a linux user at home, but Microsoft pays the bills at work. You know how often I have to restart Windows Server 2003? At least once every other week for whatever reason. A lot more often than I have to start my linux server at home. I've never had to restart linux for anything other than a new kernel.

      Last week:
      "Why did you have to restart that server?"
      "We were having a lot of problems." Problems being unexplainable slip-ups in Windows Server 2003.

      --
      Chewbacon
      The Bible is like Wikipedia: written by a bunch of people and verifiable by questionable sources.
    3. Re:Huh? by Tuffsnake · · Score: 0

      According to a recent study I just made up, in the category of every OS measure Linux and Windows got the following (out of 100 possible pts):

      Windows - 101 points (they get an extra for winning this category ... it was a recursive study)
      Linux - 0 points


      IMHO figures/stats/benchmarks (for the most part) are worthless b/c anyone can fine tune tests to get results they want.

    4. Re:Huh? by Kolisar · · Score: 2, Interesting

      Show me charts and stats and benchmarks that prove Windows superior to Linux in every measure and I'll agree with you.

      I do not believe that proving that Windows is superior to Linux is the issue. As the result of marketing, timing, and a possible deal with Satan, Windows has 90+% of the market and people, like energy, tend to take the path of least resistance. Until you can walk into your local consumer electronics store and find shelves of Linux software and computers with Linux pre-installed people will continue to use Windows.

      As a user of OS X I make the special effort to locate stores that sell software and peripherals for my Macs, and usually have to travel about 45 minutes to get there. Most people (not /. readers, the rest of the world) will not. For my Windows machines I can drive ten minutes down the road and find almost anything I could possibly need (including compilers). This is why Linux may never displace Windows.

      What someone needs to do is produce a bunch of those $5-$10 CDs in the software section containing Ubuntu, Knoppix or any of the other live versions containing OpenOffice or something similar and a bunch of other stuff ready to go from the disc. Then someone needs to create some more of the $5-$10 CDs with a bunch of Linux software that can't fit on the live CDs so the general public can try it without risk (minimal financial, no risk of destroying their computer) and make up their minds. Keep in mind that most people stick with Windows because it came with the computer and they could not install most versions of Linux themselves and, even if the install is bullet-proof, they would not believe that they could install an OS. It has to be made as easy as possible or they will not even try.


      --Kolisar

    5. Re:Huh? by Anonymous Coward · · Score: 0

      You know how often I have to restart Windows Server 2003? At least once every other week for whatever reason. A lot more often than I have to start my linux server at home.

      That is not really a fair comparison. You are comparing a production server that is being used in the workplace to a home computer in your house.

      And FWIW we have about 300 servers at my workplace, a few of them running WinNT 4.0, most of them running Windows 2000. We have started migrating them over to Windows 2003 back in November.

      Since then I can only think of a few times that we had to reboot any 2003 servers. We had to reboot all the 2003 print servers because for some lame reason they stopped listing their printers in AD and rebooting fixed the problem. I cannot think of any other reasons that we have had to reboot them though. Maybe to add some patches or something but it certainly is not rebooting them once every other week. And most of these machines are under a pretty high workload.

      When it comes to features, depending on what you need, I think that in many ways Windows and Linux are nose to nose. For where I work Windows is actually a better choice. The only obvious benefit that Linux has over Windows is that it is free.

    6. Re:Huh? by Anonymous Coward · · Score: 0

      And I'll stick to my inferior Debian 'Sid'. I'd rather just get work done rather then looking around on the internet for shareware apps.

      And while you sit alone in your parents basement feeling smug and superior because of the operating system you use, I'll be having sex with my girlfriend who neither knows nor cares what an operating system even is!

  6. Re:The Penquin Speaks... by Anonymous Coward · · Score: 1, Insightful

    I've never ben so early in a thread before, but I agree. There's too little standardization for Linux to become an OS.

  7. Mindset by CypherXero · · Score: 5, Insightful

    It's the mindset of most people that keep them from using Linux. They've been using DOS and Windows for YEARS, and they're so familar with how things are, that changing that even slightly is very confusing for most people. If Linux had been in Windows place, and had 90% of the market, people would LOVE Linux and HATE Windows. Simple as that.

    For example, my dad is a Windows person, and his SO has a Mac with OS X. He can't seem to understand how OS X works, so he dissmisses it and claims that Windows is better (on the fact that he knows how to use Windows).

    It's not that Windows is "special", it's just that that's all most people know. And half those people don't know much, if anything, about Windows anyway, so it's no wonder Linux has a difficult time trying to enter the mainstream market.

    1. Re:Mindset by Anonymous Coward · · Score: 3, Insightful

      That is funny. I work in technical support. I would argue with your assumption people like windows because they know how to use it. Most people have no clue how to use windows.

    2. Re:Mindset by harley_frog · · Score: 5, Insightful
      It's not that Windows is "special", it's just that that's all most people know. And half those people don't know much, if anything, about Windows anyway, so it's no wonder Linux has a difficult time trying to enter the mainstream market.

      Excellent point. Any OS is "difficult to learn" to a complete newbie. Someone familiar with only one OS will think that OS is the greatest and everything else is "subpar". While those users who know two or more OSes well can more easily transition from one to another, even to a totally new and unfamiliar OS. Therefore, in order for Linux or OSX to really make a major dent in the desktop arena, users need to be exposed and educated about them. That, of course, requires that the in-fighting between the various Linux distro fanboys needs to be put aside and join forces to make this happen. And that is a huge hurdle to overcome.

      --
      It's all fun and games until someone loses the key to the handcuffs.
    3. Re:Mindset by P-Nuts · · Score: 2, Insightful
      It's not that Windows is "special", it's just that that's all most people know. And half those people don't know much, if anything, about Windows anyway, so it's no wonder Linux has a difficult time trying to enter the mainstream market.

      Why is everyone so worried about whether Linux gains market share over Windows anyway. The people who do use it find it works for them, and are a large enough base that it will continue to improve.

      Regular desktop users (non power users, non programmers) are unlikely to do much in the way of submitting patches, or writing new software.

      As long as we can all still use Linux or other open-source software, what does it matter what the rest of the world does?

    4. Re:Mindset by Anonymous Coward · · Score: 0

      If Linux had been in Windows place, and has 90% of the market, people would HATE Linux and LOVE Windows. Simple as that.

      I bet Linux would be a totally different if they had were ever on top of Windows early on. There would be no free distros. And /. would be the run by the new upstart Bill gates.

      People would have had years to find fault with Linux. There would be more morons writting nasties for Linux just because they would be on top. There would be more people bitching about Linux just because they are on top and it's "cool" to complain about those on top. There would be more people trying out lawsuits on Linux just because they had deep pockets.

    5. Re:Mindset by Zate · · Score: 5, Interesting

      Definately agree. 2 cases I have seen recently where someone who hasnt really "used" any OS wanted to try Linux. First person was a friend of mine who decided he wanted to get into IT, just on whim. He'd heard us discussing this Linux stuff so bought himself a PC (hadnt had one before) and downloaded FC3. With in 3 months he is Linux+ certified (not a big deal) and can use the OS to do anything he wants. He thinks its amazing, so simple, so easy. I got him to try Windows XP, last time he used a computer for anything major was Win95. He hated XP and is happy as can be with his Gnome/FC3. He's now looking around at other distros and learning stuff at an incredible rate. But my point is for someone who isnt familiar with either OS, either OS will do what they want just fine. Its when your set in your XP lazyness that Linux becomes difficult or confusing.

      Second point is i got my wife using tools for her everyday tasks that exist on both OS's. She isnt a power user either, most of what she does is her mommies gorups, emails, web pages, gaim and little photo editing etc etc. All of which she used open source packages to do on windows. I decided to rebuild her downstairs PC with Gentoo. Took her a day to get used to KDE, and where to find her programs. Now she just does what she used too. She doesnt miss Win XP and couldnt care less that she is using Gentoo.

      Kinda sad that I'm the tech guy and I'm the only XP user left in the house. Damn EQ2 and its inability to run on Linux.. hehe.

      --
      IT is Dead. The industry is Shot Join Others Who Feel Your Pain http://www.internalstrife.com/
    6. Re:Mindset by ykardia · · Score: 1

      I don't believe that whether or not there is in-fighting between Linux distro fanboys will make any difference to the adoption of Linux on the desktop.

      Frankly, I think most of the world ignores Linux fanboys.

      What will make a difference is corporations looking to save money. Linux will eventually be more widely deployed on the (corporate) desktop in situations where people need only a restricted set of software and people don't depend to much on Windows-only software (like, say, a call centre), and will make inroads from there.

      If people use it at work, they will use it at home eventually.

    7. Re:Mindset by howlinmonkey · · Score: 3, Insightful

      I am comfortable with Linux, Windows and BSD. I have done a little dabbling with the AS400, and worked on a mainframe in college. I have no fear of the command line, or learning a new OS. The reason I still use Windows as my desktop is STABILITY.

      I know it is hard to believe that stability is an issue, but I have tried a number of Linux distros, only to have the OS go nova when I tried to install some new software, or update the base install. I am a geek, but I also have a buisness. I need my computers to work so I can bill hours. I need to be able to install new software quickly and easily without crossing my fingers and praying to $deity that my system and necessary apps will work when I am finished. In spite of all the horror stories about Windows, I have comparatively few problems with it on a daily basis.

      I will continue to try updated distros, and new package systems, because I really do think Linux is an awesome concept. But until it is as reliable on the desktop as Windows, I can't make the leap.

    8. Re:Mindset by saha · · Score: 2, Insightful

      I believe what CypherXero was saying when his father says he knows Windows, his father isn't claiming to be knowledgeable just that he's familiar with the OS and it remains in his comfort zone. The biggest resistance to change is due to people who are nervous and unsure about compatibility issues with Windows and the anticipatory frustration of learning a new system.

    9. Re:Mindset by zaphod123 · · Score: 1

      I have convinced people to give Linux a try with Knoppix. It goes something like this...
      Someone asks me to fix their spyware and virus contaminanted computer... I bring up the fact that if they put the Knoppix CD in the drive and click on the Firefox button, they can surf safe and clean.

      --
      :q!
    10. Re:Mindset by Dr.Opveter · · Score: 1

      I've grown up with DOS/Windows and got to know it well. I see the potential of Linux as a server or workstation even, but i just don't have the time (work & wife) to figure out how to make it all work like i do with Windows.

      It takes me a couple of hours tops to install and configure a windows server or workstation. A Linux workstation is not so much a problem either but when i tried to get a server with a bunch of services i need (like ftp, http, stmp, pop, vpn, vnc, ssh etc) up and running, i just can't do it and feel 'secure' about it, even though all i usually hear about Linux is that's it's pretty secure out of the box. I'm sure if i would put my Linux install on the internet it'd become someone else's playground pretty soon.

      Maybe some day i will lose my job and get some spare time to figure it out, but until that time i'll stick with Windows. (The little spare time i do have i prefer to play FPS games or make music, something Linux isn't really there yet anyway IMHO..)

      --
      Sample this!
    11. Re:Mindset by bluGill · · Score: 1

      It only matters to me in two ways: I want drivers that work for my system (graphics cards are very bad about this, my laptop has a cheap 3d chipset, but no drivers exist for it so I can't make use of it), and I want documents that I can open.

      People assume that I can open Microsoft Word and Microsoft Excel documents on my computer, so they send them. Nevermind that plain text would work just as well, I get documents in the format they created them in, which I cannot view. (OpenOffice.org could open them, but installing OOo on FreeBSD is nearly impossible for experts - it is worse because I do not agree with the Java license agreement so I couldn't get all features if I did install it)

      When Linux has a significant market share (it doesn't even have to have a majority, just enough that everyone knows about it) this situation will change. Until then I live with a better OS that has some stupid limitations beyond my control.

      I prefer FreeBSD myself, but most Linux applications run on FreeBSD as well. Most developers of applications that don't run are at least interested in my patch to make it work. (and since nearly all apps are open source I have the ability to make those patches!)

    12. Re:Mindset by Anonymous Coward · · Score: 0

      Frankly, I think most of the world ignores Linux fanboys.

      Yeah but they laugh at M$ fanboys.....

      And so does your hero Billy....

    13. Re:Mindset by Anonymous Coward · · Score: 0

      Mandrake and Fedora are buggy as hell and Debian is hell to set-up. The hands-down best Linux distribution in the market is Suse. It works like you would expect it would...

    14. Re:Mindset by Anonymous Coward · · Score: 0

      It is really interesting that most of the comments on this article include a "joe sixpack" type theory that windows is all they know... the article is about PLATFORMS. its not even about desktops.

      you have to think in a larger scale, but that seems to be out of reach for most.

      and no, not large scale as in a 120 computer cluster, but a bigger software system, where an OS is just a trivial part in.

    15. Re:Mindset by mmurphy000 · · Score: 1

      Have you installed Windows on that Sony laptop? Or did you just get it with Windows pre-installed? I ask, because Sony laptops are a pain to get any operating system on, because they have a tendency toward leading-edge components, for which drivers don't ship with the operating system. Now, it might well take less time to install Windows from scratch, because there's greater chance Sony has collected the various Windows drivers for you on a Sony support site.

      Let's imagine a world where Sony shipped Linux pre-installed and that's what their support pages discussed. It might well take well over "12 hours of fiddling" to get Windows on a Sony laptop, as you might not even be able to readily get drivers for various bits of Sony hardware (e.g., Memory Stick PRO slots).

      If the Linux community wants to see Linux become mainstream, they need to focus on usability, instead of security.

      The vast majority of computer users will never install an operating system. So, if the Linux community takes your advice to heart, it won't help in your particular situation. Instead, you should be writing to Sony (and any other hardware manufacturer whose equipment you use) and ask them to provide a page of Linux drivers for their hardware.

    16. Re:Mindset by SirCyn · · Score: 1

      It's not that Windows is "special", it's just that that's all most people know.

      I disagree. I my mother has a computer in her kitchen. It's an HP Thin Client, running FreeBSD 5.3 and an X Terminal. It connects to the house server running Gnome 2.10 (because dual 1.6GHz Palaminoes are much faster than the TC).

      She used to use Windows, but it constantly got viruses, advertising, and everything else. I switched her and after just a day of learning curve she really doesn't know the difference.

      So why did all this work out so well you ask. Because I set it up for her. Made everything work. All she does is point and click; just like she did in Windows. It's even similar programs. Few people can really tell the difference between IE and Firefox (functionality wise); and she used Thunderbird for e-mail before anyway.

      The big problem (as I see it) with Linux and the BSDs is the setup. Windows installs and configures just about everything for you. All your hardware will be picked up (usually). The setup program doesn't make you assign a swap partition. The printer will be installed automatically.

      If linux and the BSDs want to convert mass users then they need a setup program that is able to get the computer up and running with an Office Suite, Internet Suite, and all the hardware functional; with absolute minimal user interaction.
      The Bushman (from another comment) should be able to install it.

    17. Re:Mindset by NoMoreNicksLeft · · Score: 2, Insightful

      But you're also the kind of person who manages to make windows work. You've probably been working on the same install of 2k for 18 months or more, never a problem. This has more to do with your computing practices, than it does with windows. An identical installation (be it XP or 2k, or whatever) on an identical machine for Joe User, and it wouldn't last 2 days. Not even 2 hours, if on broadband.

      This does not excuse windows in the least. Of course I expect even a junkbeater car to drive down the road every day with no problems, assuming the driver is a mechanic, the passenger is an auto engineer, and the 2 guys in the backseat are car technicians.

      Try slackware, and forget packages. Download tarballs, and do ./configure && make && make install.

    18. Re:Mindset by Anonymous Coward · · Score: 0

      I wouldn't be so sure about that. Read the other replies to your post. They're pretty mixed. The problem you see, as far as ease of use is concerned, Linux fails it, and without that, security and stability don't matter.

      I've dabbled, struggled, given up on, and come back to Linux off and on over the past five years now. And always it's the same problem: when something isn't working as expected, it's anybody's guess what I need to do to fix it.

      CD-RW won't write? Better figure out what modules and kernel parameters you need.

      DNS settings messed up? Oh, well you're in Suse now so you do that differently than Redhat.

      Gaim times out on login although Sim works fine? Ha, good luck figuring that one out.

      Need to do any of a myriad simple things (install a program, change screen settings, change behavior of a program) ... and you're looking for the simple intuitive way to do that? Sorry, it doesn't exist.

      I never have such extensive trouble with Windows. Even if it's a problem I've never dealt with before I can have a fairly high confidence I'll figure it out fairly quickly without any help. Most times in Linux it's impossible without referring to some manual or calling someone.

    19. Re:Mindset by Gurana · · Score: 1

      This whole concept really works with just about anything; different software suites, types of cars, or whatever. People that grow up using WordPerfect probably tend to bash Word, while people that grew up on say american cars probably don't like japanese cars. I think MS probably is all too aware of this. At my university I noticed that students that had home-grown machines usually had pirated copies of Windows, as opposed to some free alternative. I don't believe that MS necessarily does anything directly to make these cracked copies easily available, but I think that they are on some level willing to live with this. So what if MS is missing out on a few licenses from illegal copies? It just ensures that most people will continue to be ignorant about any other alternative. So when large corporations need to choose what OS to put on thier workstatinos, their going to go with the one that will require the least ammount of training for their employees to use. (I don't think that any company would seriously take the time to teach an employee how to use an OS). In fact, I believe MS even found a way to get some money out of this situation as well. My university, during my last year at school, entered some sort of agreement with MS. I'm not sure about the details, but I believe essentially MS either gave my school x number of licenses, or sold it to them at a decreased cost, and my school in turn made them freely available to students. As far as the students were concerned this was a way to get a free OS (complete with all the latest service packs until graduation) legally and with no hassle.

    20. Re:Mindset by CDarklock · · Score: 1

      > Any OS is "difficult to learn"
      > to a complete newbie.

      However, Linux frequently puts the user in positions where something very technical needs to be done. I frequently find that when I load or create a document in OpenOffice, my X session will freeze. Then I need to flip over to a shell prompt, login again, and kill the X server. If I didn't know what I was doing, how would you explain this process? Is this a reasonable thing to expect someone to do on a regular basis?

      That's where things fall apart with Linux as a desktop OS. Windows, on the other hand, just works. You can treat it like a black box, because that's what it is. The answer to everything that might go wrong is "reboot". Most of the time, that resolves the problem and you can get on with your work. It's like having one big button that says "FIX".

      You can scoff all you like at this dumbed-down interface, but it's very attractive to people who neither know nor care what the button actually does.

      > the in-fighting between the various
      > Linux distro fanboys needs to be put
      > aside

      This stems from the UNIX culture's general tendency to attach emotional values to technical concepts, which was charming and amusing when we were all able to tell the difference, but we're losing that with the mad rush of new initiates into our camp. Even OSI seems unable to distinguish the philosophy of free redistribution from the technical merits of transparent development, which is distinctly damaging to the open source platform.

      --
      Microsoft cheerleader, blue flag waving, you got a problem with that?
    21. Re:Mindset by browngb · · Score: 1

      I have Windows XP Pro installed, and I only had to spend a few hours fiddling to get the proper drivers (though windows did work out of the box). My trouble with Linux was only Fedora recognized the firewire CD-rom, so I had to either install from a windows partition with the ISO's on it (which I couldn't get to work for Mandrake or Debian) or install Fedora. I'm still having problems installing programs, but I'll figure it out eventually.

      --
      Generally, I get bored with my replies and give up on making sense halfway through.
    22. Re:Mindset by drakken33 · · Score: 2, Informative

      The first trap you fell into was focusing on installation problems with Linux but made no mention of actually installing XP, only using it. Could your 80yo Grandmother install XP? If she could then fair play to her. Most of the Windows users I know have some problem or other (usually confusion over partitioning the HDD).

      The second trap you fell into was ignoring the original point: people can have problems learning their second OS because they're stuck in the mindset of their first OS. You demonstrated this point when you said:

      On the other hand, I need to get over to some Linux forum to find out how to install the sonypi drivers, since double clicking an .rpm doesn't do anything. For some reason, I expected it to behave like a .exe.
      You expected an RPM file to behave in a certain way based on your experiences with Windows. It could be argued that someone who has only ever used Linux would have to go to a Windows forum to install a Windows app because they can't find the package manager. That might sound ridiculous to you but it's no more ridiculous than expecting an RPM to behave in the same way as a Windows .exe.

      Because of my own mindset I had a panic attack two days before my Mac was delivered because I realised I didn't have the first idea how to install and uninstall software with OS X and had already downloaded several freeware apps that I wanted to use. I could only think that there would be an equivalent to setup.exe or a package manager but until I researched it it was a little daunting. That would make a seasoned Mac user laugh in the same way that seasoned Linux users would find it odd that Windows and Mac users might have problems with a concept as logical (to us) as a package manager.

      --
      Andy.
    23. Re:Mindset by InvalidError · · Score: 1

      This is a chicken&egg situation.

      Without market share for an OS/hardware platform, getting programmer mindshare for it is much harder... why bother tuning software for a platform that has only 5% market share, focusing on the 90% platform is much more likely to pay off.

      More programmers brings more software to a platform. More software gets the platform more visibility and potential install base. A larger platform deployment increases the platform's visibility on developers' radars, increasing the likelyhood of more software becoming available, etc.

      Regular users may not submit patches but they still count as install base. Install base is many platforms' most valuable marketable asset. Who would code for a gaming platform with 5% market share? What commercial software vendor would bother with Linux's 10% market share? Other than high-end, extremely expensive software, very few.

      Things should become really insteresting a few years after Linux reaches 10% home desktop market share.

    24. Re:Mindset by Anonymous Coward · · Score: 0

      Good point. I just finished helping a person who had her computer upgraded from Windows 2000 to Windows XP. She's totally confused and is complaining about how different things are. This is the type of user we have to deal with, and the reason that its so hard to change sometimes.

    25. Re:Mindset by drooling-dog · · Score: 2, Informative

      Funny, I had the opposite experience, and I was more than merely "comfortable" with both sides of the fence. I used to dual-boot my desktop with Linux and WinNT, and my laptop with Linux and WinME. Then one day a couple of years ago I realized that my utilization of Windows on both platforms had dwindled to nothing; I hadn't booted it at all in 5 or 6 months. So, I reclaimed the disk space and have never regretted it one bit. And I do a lot with both machines.

    26. Re:Mindset by drinkypoo · · Score: 3, Interesting

      I know it is hard to believe that stability is an issue, but I have tried a number of Linux distros, only to have the OS go nova when I tried to install some new software, or update the base install.

      I've only ever had one distribution blow up on me when I installed new software, and that was SuSe Enterprise 8 sp1. I installed the development tools, and the system stopped working properly.

      Upgrades are a bad idea at best, unless you have an upgrade-in-place system like a *BSD (they often get it wrong too) or gentoo. Gentoo in particular is easy to update from version to version, and what's more it tends to work, especially if you sync soon enough after a new version announcement. :)

      You want it to be as reliable on the desktop as Windows? If installing programs blows up the OS, and upgrades don't work right, it sounds like Linux is already there. Those are "features" that Windows has had as long as there's been Windows!

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    27. Re:Mindset by AWoroch · · Score: 1
      on an identical machine for Joe User, and it wouldn't last 2 days. Not even 2 hours, if on broadband


      Look, if people can't, regardless of OS, ensure that they have an addon or built in firewall turned on or configured, and/or antivirus and/or antispyware, that's their *fault*.

      I understand tht its less of an issue with Linux, but if you buy a house and don't bother to close the front door, stop flipping complaining that people keep taking your stuff.

      Computers I set up last wonderfully on broadband - just turn on the freaking built in firewall or make sure they're behind a router/firewall of some sort - hell they probably need a 4+ port switch *anyway*, so why not spend the $40.

      This is an old arguement that only gets older every time its spouted.
    28. Re:Mindset by Jason+Hood · · Score: 1

      So what you are saying is, we need an exact replica of a WindowsXP wm in linux. Some distros come close, but a commercial distrobution is asking for a lawsuit if they are too accurate

      Men have had their nuts blowtorched on here for less.

      --
      Are you intolerant of intolerant people?
    29. Re:Mindset by Anonymous Coward · · Score: 0

      "I understand tht its less of an issue with Linux"

      The fact that it's less of an issue *is* the point. Just because it's an old argument does not discount it's validity.

    30. Re:Mindset by CAIMLAS · · Score: 1

      The question is: how do we make them willing to switch (if we even want them to, which is another debate entirely)?

      Games. Get enough, good games, and the gamers will switch. Techies have already switched for the most part. If the techies and gamers switch (specifically the teenage gamer set, there won't be anyone to fix Windows machines (willingly, for less than the cost of a new system), and the problem will fix itself.

      Either that, or companies will start selling more computers as a result of Windows problems, and geeks will get a lot more free second-hand hardware. Win-win.

      --
      ~/ssh slashdot.org ssh: connect to host slashdot.org port 22: too many beers
    31. Re:Mindset by NoMoreNicksLeft · · Score: 1

      Doing phone support for a DSL company, it's not that simple. It never will be. I talk to more people who have these sorts of problems in a week, than you ever will. Most of the software they have preinstalled on their machine doesn't even come with user manuals anymore. How are they supposed to actually learn how to turn the firewall on, or configure it? Not that anything on windows can ever be a real firewall, what with it's IP stack architecture.

      And I'll barely mention those people for whom the firewall actually blocks outgoing packets.

      If you expect these people to stop using computers, get real. If you expect them to become as clueful as you are, get real. It will never happen.

      It doesn't even need to happen. There are solutions that will reduce these problems to 10% of what they once were, that doesn't require they go back to college for Zone Alarm 101.

      Windows is unmaintainable by the vast majority. Cars once were. Now days they build better cars that need less maintenance. They also build such operating systems.

    32. Re:Mindset by adamfranco · · Score: 1

      As long as we can all still use Linux or other open-source software, what does it matter what the rest of the world does?

      I for one want it to become common enough that it is shipped on most new computers. That way when my mother, aunt, friends, etc ask for tech support I can ssh in, do what needs to be done (including writing a script/patch/etc if needed), exit out and be on my merry way without having to fsck around with getting windows to "not crash randomly".

      Id be even more happy having my family running remote thin-clients, but that just wouldn't work over their dial-up connections...

      --
      "When ideology and theology couple, their offspring are not always bad but they are always blind." -- Bill Moyers
    33. Re:Mindset by nickos · · Score: 1

      "I work in technical support. ... Most people have no clue how to use windows."

      You don't think that your sample group is self selecting perhaps?

    34. Re:Mindset by harley_frog · · Score: 1

      I couldn't agree with you more. Games are to OS (and computer hardware) what porn is to the Internet (i.e., the driving force). Lately, some software publishers have been porting their games to Linux (e.g. UT2004, Doom3). The one small caveat to your point is driver support (particularly for video cards) for Linux, but, again, ATI and nVidia are starting to come around to support Linux more.

      --
      It's all fun and games until someone loses the key to the handcuffs.
    35. Re:Mindset by Anonymous Coward · · Score: 0

      It's not that Windows is "special", it's just that that's all most people know.

      Behold the power of monopoly! People know windows because it is the only OS that comes on cheap Intel based computers. Sure there are Macs at compusa, but joe sixpack doesn't want a Mac.

      Try formatting a dell machine and installing XP on it -- it is harder than linux.

      And most novice users don't know much about windows either. Plop them down on a linux machine running KDE and firefox and they don't know the difference.

      No, it all comes down to who has the illegal monopoly -- microsoft.

    36. Re:Mindset by CAIMLAS · · Score: 1

      I wouldn't put it past id Software to release their next game -only- for linux and MacOS. You know - as a philosophical stance. Probably wouldn't happen, but I wouldn't bet on it.

      --
      ~/ssh slashdot.org ssh: connect to host slashdot.org port 22: too many beers
    37. Re:Mindset by Anonymous Coward · · Score: 0

      It is a bit more complex situation than that. But, at first, lets have a little background to describe my situation at first. For the last some 20 years I've been mostly a user of Windows in some form or another, or Dos. My own career and computers have pretty much always been decided based on what I can do with them, not what OS they happen to have. I do quite a bit graphical work with video and 3d. Currently I have my main worksation running SuSE 9.2 and a separate HDD for Windows XP. Mostly I use laptop though, and OS X.

      First of all, when there is a discussion about usability I really do not see the point of pondering is SuSE easier to install than Windows XP. After all, you only install OS every now and again, say once a year (with new distribution, hardware or what ever). It is a relatively small task and somebody can come to do it for you, was it XP, SuSE or OS X. I would bet no computer illiterate person would prefer to do it in any case nor find it easy. But again, that is not the point even if I was wrong about it and somebody said it was a piece of cake. Just good. As long as it does stay sensible (meaning no Gentoo for them (of which I have good experiences, but as I do WORK with my computers I really don't have the time to look into it and put it to efficient use. I liked what I saw, but since two days was not enough for a beginner gentooist like me I had to loose it) ).

      At this point and onwards as well I deal this from my point of view, as should be quite obvious by now. But it might be a good time to be a bit more conservative and note that I do realize that for a casual user I do not see why he/she would not do with Linux. No need for very special apps besides what come with the distribution and you are fine. Also, when you are coding your own stuff, Linux seems like quite an adapt platform, it has strong points in all the options it offers. It seems it is ones like me who need a lot from the platform but are not coders that seem to have the hard time justifying the use of it in the current state. I really can't blame one for opting to windows in my place, I still need some software that only runs on it and there are very few that do not run on Windows.

      I do not see the problem that Linux could not do what Windows or OS X does, but it is more how it does it. Same with the rest as well. For one, using Windows pretty much forces you to use separate anti-virus software and a defragmenter, neither of those is really needed with Linux nor OS X. On top of that, Windows has a tendency to have programs and alarms flash to yoru face, when you are doing per-pixel images restoration and make you curse a lot when you cursors suddenly looses the focus. This is really lame if you ask me.

      There is a common problem with Linux and Windows as well, namely the directory structure. C:\Program Files need to be accessed a lot. Same comes when you attach something; My Computer CD. What I try to get to here is that there is a lot of mouse movement and complexity even if it is not really difficult to do in the first place. In Linux you do need quite a bit of moving around in directory heararchy and it is not made too easy. While there is not anything missing in Konqueror and Nautilus, but really, why does a normal user ever need to get further down in hierarchy but his/her home directory? It might be just me, but KDE and Gnome are both fixed to 'My Computer' thinking and start from the root level with the desktop icons. (I had the same thing with my mac desktop I think, but don't have it anymore. None the less, I think it was there and so has a bit of the problem as well.) Also, OS X does really well since it packets the applications to what seem to be mostly single files. And those are found in general from a single place. Now that we speak about packeting, I am not the most educated person to state, but wouldn't it be really cool if you could have hard-linked binary downloads to your architecture so you would not need to worry about FRIGGING DEPENCIES? I mean, mostly it works nicely, but once yo

    38. Re:Mindset by Taladar · · Score: 1
      Then I need to flip over to a shell prompt, login again, and kill the X server.
      I could probably explain this to a newbie ten times faster over a telephone than "simple" things in Windows, like finding the Start Menu on a Taskbar the user accidently moved to the side or top of the screen or hid (which I don't know at that point; and yes that has happened more than one time).
    39. Re:Mindset by Math,+The+Ancient · · Score: 1

      Most people have no clue how to use windows.

      That would include /.ers, imho.

      --
      If I really am talking out of my ass...explain it to me with respect so I'll at least pull my ears out to listen.
    40. Re:Mindset by silicon+not+in+the+v · · Score: 1

      I view this scenario with the following analogy:

      This could be any two operating systems or programs that are supposed to be functionally equivalent but just work in different ways. They are like two paths through a very dense forest that diverge in a V shape. For an inexperienced new user, either path is equally easy to learn and progress on. For someone who has gone very far down one path or the other and learned it in more detail and become very proficient with it, it is a very challenging thing to "switch" and make your way to the other path. The route to the other path(at a proficiency level you would like) is through very dense woods and is a difficult journey to unlearn all of the ways you already know to do things.

      I saw this very well when showing my wife OpenOffice.org. If you haven't used a spreadsheet much before or have just used it for entering data and creating simple graphs with the mouse-driven chart wizards and such, it's no big deal to switch. My wife, however, uses Excel extensively on a very expert level at work. She's pulling reports from database servers to import and creating scripts and formulas to calculate data for pricing and inventory levels and credits and debits on customer accounts.

      I'll bet Calc in OO.o can do all of that stuff, but it's just done differently. The formulas that she knows and can do in her sleep in Excel are named differently or formatted differently in Calc and just barf when she types them into Calc as she is used to using them. That is the frustrating side when you are faced with unlearning skills that have made you efficient and spending hours doing what you know could be done in 5 minutes on a system you know.

      --
      We may experience some slight turbulence and then...explode. -Capt. Mal Reynolds
    41. Re:Mindset by westlake · · Score: 1
      If people use it at work, they will use it at home eventually.

      The home is not the office. The home is where you escape the locked down corporate desktop through media play, games, chat, digital photography, home video, crafts and hobbies of every sort.

    42. Re:Mindset by BeepBeepBiloobop · · Score: 1

      There is one issue that I'd bring up that kind of corresponds to your point. Although someone who is familiar with two or more OS's may be able to transition between them, there are the 'hardcoded' expectations external (web apps, media file formats, etc.) that make Windows a bit more entrenched. This is the major problem I see right now for the future of all non-Windows operating systems on non-computer-geek owned computers.

      Even if you harmonize on a distro, you will still be fighting to get people off of .WMP, the handy text or html editor that pops up on ebay/yahoo/etc. for Windows only, .doc, .xls, etc. (I know that OO.org can do much with these last few, but that info is not broadly available to the people we are talking about.)

      --
      I think so, Brain; but where are we going to get a duck and a hose at this hour?
    43. Re:Mindset by njh · · Score: 1

      "my X session will freeze."

      Does cntl-alt-backspace help here?

      It sounds to me like you need to upgrade your X server to support your hardware.

    44. Re:Mindset by njh · · Score: 1

      Right... which is why the Amiga did so well. History has shown that people use what they are familiar with, and if work forces them to use something, they will choose the same thing at home, even if something else is technically superior.

    45. Re:Mindset by Anonymous Coward · · Score: 0

      " my dad is a Windows person, and his SO has a Mac"

      Oh WOW, you used 'SO' instead of 'wife'. You have proven how worldly and sensitive you are. Can I please come to your next Howard Dean party?

    46. Re:Mindset by Anonymous Coward · · Score: 0

      I think that the problem is that you are installing BSD. There are lots of Linux distributions that are many times easier to install and configure (automatically) than even Windows. Heck, you can pop in a Linux live CD these days, and even those things work out of the box.

  8. I'm sorry by A+beautiful+mind · · Score: 4, Interesting

    This is just sensationalism. If you look at for example the server market, or the governments sector, linux is already beating up windows.

    My long term projection would be, that Linux will push Windows into a third of the market, something like 1/3 linux, 1/3 windows and 1/3 else.

    --
    It takes a man to suffer ignorance and smile
    Be yourself no matter what they say
    1. Re:I'm sorry by bcmm · · Score: 1

      1/3 else?

      BSD servers, yes, but on the desktop? WTF? Solaris maybe?

      --
      # cat /dev/mem | strings | grep -i llama
      Damn, my RAM is full of llamas.
    2. Re:I'm sorry by A+beautiful+mind · · Score: 1

      It is not impossible that other operating systems will be developed in the next 20-30 years, don't you think? :)

      --
      It takes a man to suffer ignorance and smile
      Be yourself no matter what they say
    3. Re:I'm sorry by Drooling+Iguana · · Score: 1

      OS/2 will rise again!

      --
      ... I'm addicted to placebos
    4. Re:I'm sorry by Anonymous Coward · · Score: 1, Insightful

      "If you look at for example the server market, or the governments sector, linux is already beating up windows."

      And if you look at the public users, you'll see that Windows is beating up Linux.

      If The People don't use Linux, it won't matter how much The Government uses it. People are happy with Windows, they don't know of any alternatives to Windows other than Macs. And who wants to buy a whole new computer just to have a different OS?

      Give users a REASON to go to Linux, and they will come. Sure, Linux has everything that Windows has program wise, but how many Average Joes and Janes want to use a command line tool just to boot up?

      And how would they convert all of their .doc files to something that could be read by a Linux distro? They don't have the time to convert every file to a txt or a pdf or any other format out there.

      Windows is so entrenched, that people won't switch over just becuase it is free. They don't want to have to put up with 'partition images' and the thought of getting all of their pictures and documents from one OS to another.

    5. Re:I'm sorry by wed128 · · Score: 1

      Google OS of course!

      Or more realisticly OSX...

    6. Re:I'm sorry by Issue9mm · · Score: 1

      Apple?

      -9mm-

    7. Re:I'm sorry by sellin'papes · · Score: 2, Insightful

      I would agree that linux is beating up Windows. Every time I open a new forum in /. I get an add from Windows saying how much better (and cheaper?) they are than Linux. This is an indication that they are threatened.

      --
      This is my last post.
      [6th Estate]
    8. Re:I'm sorry by Anonymous Coward · · Score: 1, Insightful

      "And if you look at the public users, you'll see that Windows is beating up Linux.

      If The People don't use Linux, it won't matter how much The Government uses it. People are happy with Windows, they don't know of any alternatives to Windows other than Macs. And who wants to buy a whole new computer just to have a different OS?

      Give users a REASON to go to Linux, and they will come. Sure, Linux has everything that Windows has program wise, but how many Average Joes and Janes want to use a command line tool just to boot up?

      And how would they convert all of their .doc files to something that could be read by a Linux distro? They don't have the time to convert every file to a txt or a pdf or any other format out there.

      Windows is so entrenched, that people won't switch over just becuase it is free. They don't want to have to put up with 'partition images' and the thought of getting all of their pictures and documents from one OS to another."

      I guess you are just trolling or don't know what you are talking about. You don't boot linux from a command line. In fact on most distro's you can go from the initial install all the way to a working desktop without touching the command line. yet the power of the command line is still there. Unlike windows where the command line is almost useless.

      Converting txt, wtf? Txt is text other than linebreaks, which Linux has no problems with dealing with Mac or Windows linebreaks. PDF is clearly viewable on any platform. With Openoffice dealing with even Word 2003 .docs is no problem. I've never had to put up with 'partition images', BTW.

      You realize it's not 1993 anymore right?

    9. Re:I'm sorry by UrgleHoth · · Score: 1

      1/3 else?

      OS/2 of course!
      It will make a comeback in 20 years and I'll be able to play Duke Nukem Forever on it.

      --

      Dogma - "let's just say we'd like to avoid any empirical entanglements."
    10. Re:I'm sorry by NutscrapeSucks · · Score: 3, Interesting

      If you look at for example the server market, or the governments sector, linux is already beating up windows.

      And did you look? According to IDC, Windows has a larger server marketshare than Linux, and that trend will continue with Windows dominating 60% of the market by 2008.

      Even if the numbers are arguable, the idea that Linux "beats up" the server market is nothing more than a little fib the Linux advocates tell themselves to feel better. MS is doing quite well on servers.

      Linux has done very very well in traditional Unix segments (webhosting, Oracle, financial systems). But I haven't seen any serious penetration of Linux into file&print, groupware, and internal app servers, and don't expect MS is too worried about their core server markets.

      --
      Whenever I hear the word 'Innovation', I reach for my pistol.
    11. Re:I'm sorry by omb · · Score: 2, Insightful

      And we all know who paid IDC to say this!

    12. Re:I'm sorry by Anonymous Coward · · Score: 0

      If we ever get to that point then it'll be just what Torvalds wanted.

      The truth is he doesn't want to be as big as Microsoft because then he'd be Microsoft. I remember reading something from him years ago that he's prefer Linux's market share to hover around 30%

    13. Re:I'm sorry by Anonymous Coward · · Score: 0

      If apache can do it linux can do it too. Go linux Go!!

    14. Re:I'm sorry by PFAK · · Score: 1

      Microsoft isn't doing so well when it comes to the webserver market, see Netcraft Market survey.

      --

      Free means no restrictions, ironic the FSF's GPL forces restrictions, isn't it? What's your definition of free?
  9. This article is -1 flamebait by Ckwop · · Score: 5, Insightful

    Will the /. editors stop posting flamebait articles?

    Simon.

    1. Re:This article is -1 flamebait by Andrewkov · · Score: 4, Funny

      Well, look at the bright side, at least we haven't seen this one before!

    2. Re:This article is -1 flamebait by AllUsernamesAreGone · · Score: 1, Funny

      Yet.

      Give them chance.

    3. Re:This article is -1 flamebait by SQL+Error · · Score: 0, Offtopic

      And Slashdot is -1 Overrated.

    4. Re:This article is -1 flamebait by Dirk+the+Daring · · Score: 1

      Every set of duplicate articles must, by definition, be preceded by an article that is, at the time, unique.

  10. I disagree by Anonymous Coward · · Score: 4, Insightful

    "But you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it."

    What does branding it, boxing it and putting on a price tag, have to do with a tool doing a job?

    1. Re:I disagree by paulhar · · Score: 5, Funny

      > What does branding it, boxing it and putting on a price tag, have to do with a tool doing a job?

      Who? The editor?

    2. Re:I disagree by bradhannah · · Score: 2, Insightful

      This problem is that Linux is still largely a text interface if you want to tap into any of its power.

      Go a week without using a shell. Easier said than done. I am a Windows/*Nix developer and I assure you Linux may be easier than Solaris, but it still has nothing on usability of Windows.

      For example, when I started using Linux back with Mandrake 6.0, I remember how friggin hard it was to change the screen resoltion in my xwindows session. Mandrake 10 is only mildly better.

      Apps like KDE should be largely the focus of the believers that Linux "is" the solution for home users. There are assumptions that Windows users make about where they should find widgets and configuration items. Unfortunately KDE (maybe gnome, but it is junk anyway :> ) just doesn't put them where they are used to seeing them.

      Brad

    3. Re:I disagree by Anonymous Coward · · Score: 0

      Sir, I salute you your excellent play on words. Were I to have modpoints, you would be in possession of a funny one already.

    4. Re:I disagree by Anonymous Coward · · Score: 0

      I purposely wrote in the double meaning. I'm glad someone picked it up. ^_^

    5. Re:I disagree by BJBob · · Score: 1

      10 out of 10! And it's not helped by regular postings on numerous blogs extolling the virtues of MAN, VI, the CLI and kernel crunching. Come on guys - use those GUIs, web-style interfaces and all the user-friendly tricks in the book to avoid exposing newbies to *nix and DOS-type environments!

    6. Re:I disagree by Anonymous Coward · · Score: 0

      I certianly hope that you teach your students some of the basics about computers in general..

      the local community college and Major college (Western Michigan University) have "instructors" that start off their classes by saying...

      "Linux is a unix type operating system that will never be used for anything serious or in any large companies or fortune 1000 corperations, nor be supported by any large vendors. Use this class as more UNIX learning."

      Those were the exact words from my GF's instructor. Which I told her to take everything he says with a grain of salt, he obviousally has no up to date knowlege and you need to hold everything he teaches as suspect.

      She actually dropped the class and had a 100% transfer to another IT class and asked me to install linux on her machine. She has learned more in the past 6 months just using linux (she installed flash and java for mozilly by hand! I was brought to tears!) than that instructor could have ever tried to teach.

      be SURE you have up to date information for your students. because it seems to be popular to put the know nothing IT instructors in the teach the linux class position.

    7. Re:I disagree by Noksagt · · Score: 5, Interesting
      They were blown away because they didn't realize it had a desktop and all the fancy programs that Windows has.
      I use Linux on the desktop. I'm in the sciences, so many peers do the same. A long-time colleague in an adjacent office walked in, glanced at my desktop, and said "I thought you ran Linux."

      All I had displayed was the fluxbox window manager with firefox, gvim, and a matplotlib window from a python session.

      I had to switch vterms to convince him, as I was running Linux, as he also assumed Linux was all CLI.

      He should've known better too: He wasn't some PHB, but someone who used X11 and fink under OS X! If those who are as technically literate as this don't get Linux, how will the "average consumer" ever get it?
    8. Re:I disagree by Lumpy · · Score: 2, Insightful

      90% of the people here that pan linux as too hard or driver limited are working from information that is so out of date it is not funny or blatent FUD.

      I have YET to find a desktop machine that mandrake 10.1 will not install onto and have everything configured after 1st reboot. (external scanners and cameras not included.)

      and yes, I have personally tried it on 12 different dell, 11 different compaq (including proliant servers), about 20 different generic, and about 6 different laptops. we had an installfest not long ago, and I had a 78% sucess rate.... we install linux on 100 machines and 78 were ready to go without trouble. the 45 I touched, 43 were no problem, I had 2 laptops give me fits (Toshiba SUCKS!)

      I have NEVER had that good of luck with any version of windows...

      Anyone that want's to pan linux as hard to install or incompatable had better have just tried the latest distro on their computer and are talking about that experience... otherwise they do not know what they are talking about and are spreading misinformation.

      --
      Do not look at laser with remaining good eye.
    9. Re:I disagree by Anonymous Coward · · Score: 0

      The problem is: I often try helping people with a Linux problem. I know what they're looking for can be done with a mouse, by clicking somewhere in some settings or control panel. But I don't know where. Because, I wouldn't do it myself. I learned to use all ten fingers to type, I type fast, and even looking for the mouse (where did I put it last I used it?) slows me down. So, I can either help them solve the problem, or they can wait for someone else to do it.

      Linux is popular for flexibility. It allows people to do it their way, and my way is using the keyboard, bash, vi and grep. Windows on the other hand allows One Microsoft Way(tm) of doing things. (well, and the registry editor).

      If people want help, they can get it in the way the helper prefers. Don't require the helper to install and learn a lot of things to do it the newbie way (no, I don't have the Gnome Control Panel (or whatever it's called) installed. I'm not going to use it, I have no need for it, so I'm not going to install it).

    10. Re:I disagree by Anonymous Coward · · Score: 1, Insightful

      Absolutely. The first time I heard a friend say he was switching to gnu+linux my reaction was: "does it have graphics?". After being assured that it did have windows and the interface worked basicly the same as Windows my second question was: "why switch?".

      I read a statistic once that said that most gnu+linux users were male, educated and have broadband. I guess yakking about it online only hits a certain demographic. If we want to reach further we need to try something else, like getting it in schools.

    11. Re:I disagree by dtfinch · · Score: 1

      Go a week without using a shell. Easier said than done.

      I don't think I could manage that even on Windows. I use the Windows command prompt almost every day. The difference is that I can do more at the Linux command line. Everything is scriptable. In Windows, I'm simply out of luck from time to time.

    12. Re:I disagree by Noksagt · · Score: 1
      This problem is that Linux is still largely a text interface if you want to tap into any of its power.
      The lack of easy GUIs to use power features is universal across OSs. POWER users need a different feature set that would only get in the way of average users.
      Go a week without using a shell. Easier said than done.
      Well, the "average" desktop user can get by perfectly well with an office suite, a browser, an email client, and little else. It is perfectly possible for Linux to do all of this. Furthermore, there are X-based text editors & configuration applications. I think it is perfectly possible to go a week without using a CLI. What I find more frustrating is when I am on Windows and WANT to tweak some setting or to use a powerful CLI & can't.
      For example, when I started using Linux back with Mandrake 6.0, I remember how friggin hard it was to change the screen resoltion in my xwindows session. Mandrake 10 is only mildly better.
      I can't speak to these distros. Others automagically make an xorg.conf & have a control panel-like applet to do this.
      There are assumptions that Windows users make about where they should find widgets and configuration items. Unfortunately KDE (maybe gnome, but it is junk anyway :> ) just doesn't put them where they are used to seeing them.
      Familiarity is important, but not essential. Look at the changes of each incarnation of Windows! Or look at the contrast of Windows and Mac.
    13. Re:I disagree by Anonymous Coward · · Score: 0

      I work at my schools IT dept and we deploy 7-8 labs worth of Windows machines via the network and out of 25 machines in each lab we have maybe, MAYBE 1 driver issue or domain name conflict when altiris (our deployment solution) reboots machines after the first installation pass. If you want a decent sample in terms of installation issues try increasing your installation yield. Windows has nearly no issues when installing drivers, user permissions, and applications, IF YOU KNOW WHAT YOU ARE DOING.

      A lot of IT personnel I have seen work in a Windows environment, don't know a fraction of the application usability of Windows nor its excellent hold up in a Corporate environment.

      Maybe the problems you're having with Windows is a case of PEBKAC?

      On the other end I have seen some significant issues with most Linux Distros where network installation of apps and software become an issue, especially in a Corporate Environment. Most problems consists of faulty network application code when distributing distros across a network.

      The other thing to consider is the fact that most Companies go with what they know and most of what they know makes their money and they know Windows. So as opposed to risk losing money on a system that might not be as reliable as Windows they don't delve into Linux as a staple of their Corporate Infrastructure. As many of the users before me have mentioned, until Linux becomes as lazy as Windows, no one in the corporate world, let alone home users, will look to its use. Not to say Linux needs to be as bloated as WinXP, but Linux Distros need to be combined and make one single distro that will do everything that everyone wants and standardize packaging systems and the like so even the most retarded user can adapt, THEN I think the general populace will embrace it. You have to remember, the human race is illiterate, computer or otherwise, you don't want to push their feeble minds too far. ^_~

    14. Re:I disagree by salesgeek · · Score: 1

      They were blown away because they didn't realize it had a desktop and all the fancy programs that Windows has.

      You are so right about this. The perception is that Linux is hard to use. KDE and Gnome desktops are not. Distros like Ubuntu, Mephis, SuSE desktop all are a great user experience - and very, very clean and easy. Why not steal a line from Apple and name the UI/desktoop suite something cool like Quartz... Or Crystal... The theme and icon guys are really onto something with their naming.

      --
      -- $G
    15. Re:I disagree by Anonymous Coward · · Score: 0

      Ok, please tell me does windows install the drivers for Creative audigy automatically? nope, you gotta download them. Linux HAS them. same for lots of hardware that you have to install the drivers seperately for windows...

      I have had windows XP give fits with SCSI drives, and good fricking luck installing XP on a SATA raid0 setup without having the installCD slipstreamed up to SP2.

      but even the most basic Windows user knows how to slipstream the install CD. bnecause thay are all farking geniuses...

      oh wait....

    16. Re:I disagree by GigsVT · · Score: 1

      That's very true. I would probably not be typing this on Linux right now if I hadn't had a coworker around the year 2000 that insisted his dev box run Linux, so I could see all the neat Enlightenment desktop type stuff, MP3 players, browsers that didn't suck too bad, etc. I had used BSD in college with TWM or some crappy WM, and I had thought Linux was the same way.

      It also helped that in 1999 I started using Opera in Windows instead of IE, and knew that was available in Linux too. (Nowadays the more likely migration path here would be IE->firefox windows->firefox linux).

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    17. Re:I disagree by Anonymous Coward · · Score: 0

      Wrong. SuSE for one has a lot of proprietary stuff and their tools aren't always that easy to use. And there a lot of differences in how system and configuration files are organized among those distros. It is by no means a "great" user experience.

    18. Re:I disagree by Anonymous Coward · · Score: 0

      Educated and having broadband I understand because I don't see how/why you'd even attempt Linux without that. Linux is really only a viable option for the Comp Sci geek and even there it's severly limited without good access to the internet. So yeah, there you go.

    19. Re:I disagree by infinii · · Score: 1

      Next time, try not to use the terms "...hate YET..." and "78% success rate" in your argument.

      "external scanners". So Linux has no problem with those *internal* scanners? ;)

      Where I come from, 78% doesn't even cut it close. If I run an IT department, I don't want to hear that 22% of my machines are useless because we can't install an OS on them.

      I highly doubt that you will find me an assortment of x86 hardware where I have less than a 78% successful installation rate of a Windows OS.

      So who's spreading FUD now?

    20. Re:I disagree by korbin_dallas · · Score: 1

      Time to send this myth to MythBusters.

      Myth: Linux is HARD to use.
      Result: Busted!

      --
      They Live, We Sleep
    21. Re:I disagree by jonadab · · Score: 1

      > I have NEVER had that good of luck with any version of windows...

      Luck is what you make of it. Windows does require more reboots, and of course it helps to be at least a Windows poweruser (just the same as it helps to be a Linux poweruser if you're installing that -- and don't get me started on installing BSD), and sometimes you will have to download drivers from the manufacturer, but despite all that the success rate for an experienced user can be very high, as almost all hardware is capable of running it (or vice versa, depending how you look at that) -- much higher than 78%. (Although, that number also seems low to me for modern Linux distros -- what are you installing, Debian stable?)

      There are, of course, some things to know when installing a Microsoft OS. Number one is, get the data you want to keep off, fdisk the thing, and create new partitions from scratch. Always. Saves HOURS of headaches. (In a pinch, if you really HAVE to keep the partition in tact for data's sake, installing somewhere other than C:\WINDOWS can work as an interim solution, if you have enough extra drive space, but I recommend against it if it can possibly be avoided, since the cruft left around by this approach can really wreak havoc with application installations.) Number two, as soon as you have a decent working state, create a system restore point *immediately*, *before* you tweak anything, *especially* the network settings. But, there are not-so-dissimilar equivalents to these with the Linux distributions I have used also. Getting networking to work, and keeping it working while you set everything else up, is generally easier with Linux, but OTOH getting printers to work can be more of a pain. Really, they're quite comparable, albeit certainly not the same.

      --
      Cut that out, or I will ship you to Norilsk in a box.
    22. Re:I disagree by hey! · · Score: 4, Funny

      That sounds like an advertisement:

      Announcer: We're here at the Vigneswara Call Processing Center in Bangalore, India, where we've secretly replaced the customer service reps' Windows XP with Linux. Let's listen in.

      Operator: Wow! That went completely smoothly.

      Announcer: Did you know we replaced your Windows with Linux?

      Operator: Impossible! Where's the bitter CLI taste?

      Announcer (tapping the keyboard a few times): Right here!

      Operator: Amazing! Can I work a third consecutive shift please?

      Supervisor (shocked): they never ask for a third shift with Windows!

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    23. Re:I disagree by jonadab · · Score: 1

      > This problem is that Linux is still largely a text interface if you want
      > to tap into any of its power.

      This is also true of Win32. And the shell is pathetically bad -- though the new one in Longhorn is supposed to be an earthshattering improvement, and I'm inclined to believe it.

      I have a feeling you're confusing "easier to use" with "easier to *learn* to use", which is a different thing. The learning curve for Windows starts off less steeply than the one for *nix. (Note that I'm talking about the first part of the learning curve, the part that a newbie encounters; once you reach the power user level, the curves on both platforms change, but in different ways.) However, once you've learned how to use it, the command line (on both platforms) makes a lot of things WAY easier to do than the equivalent GUI way, and the *nix command line is (at this time) indisputably better than the NT command line, which in turn is universally regarded as superior to the Win9x comand line, which in turn puts the (classic) MacOS command-line completely to shame :-)

      > Go a week without using a shell. Easier said than done.

      *shrug* Go a week without using a web browser. Go a week without using a text editor. What's your point, exactly? Prohibiting the use of whole classes of important standard application categories is *always* going to be rather limiting.

      Sure, new users don't use some of the more advanced types of applications -- command line stuff, text editors, raytracers, compilers, image editors (except maybe those ones that come with digital cameras and have auto-remove-redeye buttons and no real features; whether those are really image editors is an open question), remote login facilities (not just the command-line ones; new users don't use RDC or VNC or cetera either; generally even mentioning the possibility of controlling a second computer remotely will overwhelm them) -- anything they don't have an immediate felt need for, because, being new, they still have plenty of basic stuff on their plate to learn, without adding more esoteric things to the cirruculum. Indeed, some people dabble with computers for several years before they even learn to use such essential things as the clipboard.

      And yes, some users learn things (everything) more rapidly than others, mostly due to motivational factors, and to a lesser extent due to aptitude; and yes, some users reach a certain point and decide that's pretty much enough for them, at least for a good while (though often they change their mind several years later and want to learn how to do X, Y, or Z). Which is fine.

      But none of that is specific to any particular platform.

      --
      Cut that out, or I will ship you to Norilsk in a box.
    24. Re:I disagree by Buelldozer · · Score: 1

      Come to my house and put it on my system at home then. It's an AMD 2100+ that I built myself, works perfectly when I boot into Windows XP.

      When I boot into Suse 9.2 Pro though I have MAJOR issues with 3D acceleration (Ati Radeon 9700 Pro) and my SB Audigy.

      Suse 9.2 Pro also hates my HighPoint RAID controller.

      Before you go spouting off at the mouth about how all is great and groovy with *nix driver support you should come out to the real world, where things DON'T always "just work". Mandrake or no...

    25. Re:I disagree by Anonymous Coward · · Score: 0

      Because someone has to buy the tool. People buy products and businesses buy the products of other businesses.

      A tool must be known and supported. Managers more readily of a microsoft product because they know that "microsoft is behind it" and they know they are paying for support. I work IT and my boss doesn't want me to fix the dells by hand, she wants me to always call them and have an appointment for their tech guy to change a bad hard drive. Sure, I could do it faster and cheaper but my boss knows what she paid for and also wants someone to blame in case something goes wrong. In essence she paid to have her/my hands washed clean of the crime.

      Businesses tend to think differently than us geeks and engineers about tools.

    26. Re:I disagree by Blakey+Rat · · Score: 1

      90% of the people here that pan linux as too hard or driver limited are working from information that is so out of date it is not funny or blatent FUD.

      Just FYI, 90% (ass-statistic) of the Linux users on Slashdot who pan Windows XP for being slow or unstable, or not having a good security model are also working from information that's so out-of-date that it's blatent FUD.

      Hell, Slashdot is the only place in the *world* where you'll see somebody argue that Windows XP is a bad operating system because, at one point, Microsoft released BOB.

    27. Re:I disagree by Anonymous Coward · · Score: 0

      Because it's not about one tool doing one job; it's about hundreds of different tools doing many jobs reliably and consistantly.

      Let's forget that we're talking about Linux here because, frankly, Linux is the irrelevant portion of this statement. As the kernel, Linux should be transparent to the end user and the applications. The only part of Linux that is relevant is POSIX, and GNU, because they are what you might consider to be the "GNU/Linux" platform.

      Microsoft could replace the core of Windows with Linux tomorrow and most people wouldn't notice. Shit, they replaced the CPM core it used to have with a DEC VMS core and aside the "Fisher Price" new blue look I seriously doubt anyone could tell.

      The difference between Windows and GNU/Linux is Win32. That's not to say that Win32 is superior or anything; it's total shit and only exists because Windows 3.1 got popular. But Win32 is a platform. It is a layer of abstraction between the kernel and the applications. As demonstrated, the core could be replaced.

      This is what Linux lacks. Or rather, this is where Linux displays it lack of consistency. It is this layer of the "platform" which applications depend upon. On Linux there is a huge amount of choice, all strewn about in different ways depending on the distribution. It cannot be guaranteed that most of these libraries ever exist, and even if they did it cannot be guaranteed where they would be found. As such the deployment of applications is made that much more difficult, which is invariably extended to the end user who must track down installation scripts for libraries.

      Simply put, it's unreasonable.

    28. Re:I disagree by dmarx · · Score: 1
      Go a week without using a shell. Easier said than done.

      I don't think I could manage that even on Windows. I use the Windows command prompt almost every day. The difference is that I can do more at the Linux command line. Everything is scriptable. In Windows, I'm simply out of luck from time to time.

      I use Windows, and I almost never have to use the command prompt. At most, I use it once or twice a month, to do pings and traceroutes.

      --
      "Do I dare disturb the universe?"
    29. Re:I disagree by lakeland · · Score: 1

      Does it matter? If people want to come along with wrong ideas then they might miss out for a few years until they stumble apon the truth. What's the damage done to linux? What's the damage done to them? Sure, they've missed out a little bit, and maybe linux missed out on a couple early contributions from them. But overall I think it gives us even more time to make linux even more 'ready for the desktop' (which, compared to OSX, it isn't)

    30. Re:I disagree by Math,+The+Ancient · · Score: 1

      In other words, she doesn't trust your knowledge, workmanship, or even the science behind that knowledge and workmanship (makes one wonder why she hired you...anybody can talk to support personnel).

      I had a employer like this back in '98. A machine was recently upgraded to W98 from W95, but one was unable to get above 256 color or even 640x480. As the official support guy, an inspiration hit me that I should visit the manufacturer's website...lo and behold, there was a BIOS update for the specific video in question. I downloaded it, installed it, and it worked (of course). The boss saw that it now worked, asked what I did, told him and he went on a rant about "we don't use third-party" and that I should have used the 800-buysupport line (no, we didn't have a maintenance contract) for them to "tell" me I can go to their website and download/install the update. It got so intense, I simply stated I was trying to "do what I was hired for" and got "your job is to do whatever the hell i tell you!" -- i quit the next day. I had to...that company was still running their shitty accounting application on COBOL in 1999 with no upgrade in sight!!! I knew if I stayed and followed this guy's way, I'd still be supporting WYSE terminals.

      --
      If I really am talking out of my ass...explain it to me with respect so I'll at least pull my ears out to listen.
    31. Re:I disagree by BeepBeepBiloobop · · Score: 1

      Hell, Slashdot is the only place in the *world* where you'll see somebody argue that Windows XP is a bad operating system because, at one point, Microsoft released BOB.

      Are you suggesting that those people were wrong?!!?

      --
      I think so, Brain; but where are we going to get a duck and a hose at this hour?
    32. Re:I disagree by agendi · · Score: 1
      I moved to Linux about 3 years ago. I also got My gf a computer and installed linux on it and set it up (she had an very old computer that was just falling apart). At first she was "how do I do stuff?" and so I just had to show her the windows equivalents of the applications, within a few hours she was fine and rolling along. I'd administer it when I was over but I tried not to do anything else that would move things around.

      When she'd come over to my place and she wanted to check her email I'd show her how to change the shell to her own user context and type in oowriter & or mozilla & etc. and she'd run her apps side by side with mine. I din't really have time to set up anything more fancy but within a few visits she was able to do it herself.

      A few weeks ago I moved from Mandrake to Ubuntu and this time (while I was sick at home) I set up nice icons on my desktop that would just launch her apps as her so there was a Evolution/Writer/Mozilla/Kopete icon sitting there ready to go. I noticed when she came over and I showed her the icons she continued using the shell. I asked her why and she said that she just felt it was faster to her and that she felt that she could see what was really happening. She felt in command of what she was doing. She still doesn't use the prompt for file system stuff but she really doesn't need to.

      I suppose the moral of the story is that the best interface is the one where you the user feel the most in control of your tools what ever they may be and in the end it's not about how the program is launched but whether the program does the task that you need to do in the way you need it done.

      --
      I just can't be bothered.
  11. Vaguest article... by Anonymous Coward · · Score: 5, Insightful
    ...of all time? I could barely extract a single coherent, definite statement out of that. I'm not even sure why I'm typing out this post; the only justified response would be a post consisting of the single word:

    what

    Very poor indeed.

    1. Re:Vaguest article... by Anonymous Coward · · Score: 0

      would "what" be said in a lil' jon voice, because if so, i'm all over it.

    2. Re:Vaguest article... by marcosdumay · · Score: 1

      I could barely extract a single coherent, definite statement out of that.

      I could:

      "Show me charts and stats and benchmarks that prove Linux superior to Windows in every measure and I'll not argue with you."

    3. Re:Vaguest article... by ab0mb88 · · Score: 1

      I believe that is pronounced whaaaaa?

  12. I disagree by suso · · Score: 5, Interesting

    Last week I gave a class about Linux to 4 people who haven't used it yet. They were blown away because they didn't realize it had a desktop and all the fancy programs that Windows has. I think what really is hurting Linux is just myth. That myth is that Linux is just a text interface for servers or something like that.

  13. Linux can't kill Windows... by Digital+Warfare · · Score: 0

    But I'm sure we get get Gatesy and his crew pretty good ! ;)
    Seriously though, I don't think it will Kill it... yet, all in good time my fellow geeks

    --
    "Sweet llamas of the Bahamas !"
  14. Fight network effects by zoobab · · Score: 5, Insightful

    A way to fight network effect is to have platform independent applications.

    The web is a first step.

    XUL and other technologies like thsi is one step is the right direction.

    Open and RF standards are also a key in this process.

  15. Wow by metlin · · Score: 2, Insightful

    What kinda trollish article is that?

    Linux is a very broad platform - in fact, if you looked at Windows, what's common between Windows 3.1, 95/98, ME and XP?

    Hell, most programs can't even inter-operate. How the hell is this different from the variety in Linux?

    Linux is a VERY broad platform and that will be the reason why it WILL become THE platform, not just A platform.

    -2, Troll, Flamebait.

    1. Re:Wow by TheRaven64 · · Score: 4, Insightful
      if you looked at Windows, what's common between Windows 3.1, 95/98, ME and XP?

      A set of APIs and an ABI for writing graphical programs which is still supported now in spite of being over 10 years old and can be guaranteed to be available on 100% of Windows systems?

      --
      I am TheRaven on Soylent News
    2. Re:Wow by drooling-dog · · Score: 1
      How the hell is this different from the variety in Linux?

      Oh! Oh! I know this one. Is it because with Windows you have to run out and buy upgrades for all of your software every time you update the OS?

    3. Re:Wow by metlin · · Score: 1


      My -2, troll, flamebait was in reference to the original article, not my comment.

      Just to clear things up.

    4. Re:Wow by The_reformant · · Score: 1

      This is just wrong, most programs in windows in fact CAN interoperate, case in point being the clipboard. Further practically any application i can drag a file onto the application window and something sensible will happen. In linux you find some apps do these things some dont and worst of all there is practically NO clipboard interoperability.

      I mean even in win3.11 I could easily embed objects in other applications using OLE, now activeX performs a similar function meaning that if I want to embed a relational database or video in say a word document its a simple 2 click process

      With the exception of several very good linux apps particularly open office linux is still playing catch up in terms if interoperability.

      And before you tell me about piping output into other programs no-one who is a non-programmer cares about what is possible using a CLI. The state of computing has thankfully gone beyond that.

      --
      I have discovered a truly remarkable sig which this post is too small to contain.
    5. Re:Wow by Math,+The+Ancient · · Score: 1

      Is it because with Windows you have to run out and buy upgrades for all of your software every time you update the OS?

      Bzzz. Wrong answer. Obviously, you don't know your ass from a hole in the ground and it shows profusedly.

      --
      If I really am talking out of my ass...explain it to me with respect so I'll at least pull my ears out to listen.
    6. Re:Wow by kaffiene · · Score: 1

      Ha! You've clearly never tried to support Windows software over several OS versions.

      You are completely and utterly wrong.

  16. What an asshole. by Anonymous Coward · · Score: 2, Insightful

    Mod me insightful..

    1. Re:What an asshole. by wed128 · · Score: 1

      I love watching people self moderate. Gives me the illusion that i'll get somewhere in life.

  17. If you want to RTFA, but give no ad click bonus... by Anonymous Coward · · Score: 5, Informative

    Linux Can't Kill Windows
    One fundamental difference guarantees that Windows will continue to dominate

    By Tom Yager
    April 13, 2005

    You can quit proclaiming Linux the Windows killer.

    ADVERTISEMENT

    Linux is established and has a niche that, as various pendulums swing, will grow and shrink. Show me charts and stats and benchmarks that prove Linux superior to Windows in every measure and I'll not argue with you. But no matter how much money and dedication is poured into Linux, it will never put a dent in Windows' mind share or market share because Linux is an operating system, a way -- and probably the best way -- to make system hardware do what it's told. But you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it.

    Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions. Windows wins. Linux doesn't lose, because it can continue the legacy of another nonplatform, namely Unix, that needs to be refreshed and extended.

    The practical need to keep Unix around isn't rooted in nostalgia or misguided conviction. There may be times when you're convinced that the solution you need doesn't exist as a whole. The total solutions that exist might be too confining or expensive, or -- as is sometimes the showstopper for me -- simply closed. Open source Unix, in which category I place Linux, BSD, and Darwin (the OS layer of Apple's OS X), is a 500,000-piece bag of Legos that comes with some drawings and a few models you can use, build on, or tap into as references for your own creations. On paper, an OS is an ideal place to start building, because you get to choose everything that sits above it and presumably you know just what belongs in each of those gaps between your hardware and your application. You see, while developers can write to an operating system's default API, they'll spend most of their time encapsulating and abstracting low-level system calls to create what is, in effect, an application platform.

    No one is so foolish as to make what can be acquired cheaply or free; it's wiser to pick one from among hundreds of platforms and modules that fill in the holes between open source Unix and your applications.

    In contrast, Windows fills in all the blocks between the hardware and your apps. It does it in ways that you can't alter, but which you can use in different ways. You can code with the tools of your choice and in the programming language of your choice, and unless you stray too far from the rule book, everything you create will interoperate with everything others write for Windows. An operating system is a rack into which device drivers and APIs are inserted. A platform is a rack into which applications are inserted.

    Linux and Windows don't compete. Sun Microsystems (Profile, Products, Articles) sees this as an opportunity and has struggled mightily to position the combination of Solaris and Java as a platform. It almost makes it. I'd choose J2EE and Solaris over Linux for nonuser-facing server applications in shops that have expert administrators. But, similar to Linux and other flavors of Unix, Solaris is a nonstarter on clients, and that's enough to hurt its capability of competing with Windows. There is only one platform that can stand toe-to-toe with Windows, and that's the combination of OS X and Java.

    Stay tuned; I'll tell you all about it.

  18. it's not about killng by Jearil · · Score: 5, Interesting

    Linux isn't really about killing Windows off.. whoever thought that the primary idea behind Linux when it was created was to make MS go bankrupt and for no one in the world to ever use Windows is a bit dilusional. Linux is an alternative. It's a choice. The same thing could be said in reverse: Windows Can't Kill Linux.

    There's too many people who are interested with tinkering.. with having something being totally customizable if they take their time. With being free and able to run their computer the way they want. Is this the majority of people? Not even close! But it's enough that Linux will sustain itself in spite of any FUD MS and crew would throw at it.

    Who cares if Linux never overtakes Windows? I know before I discovered it in '98, I thought I was doomed to the endless update/virus/adware world that everyone else was in (except those crazy mac people.. which now due to the mac mini I am one as well.. side tracking....)

    Anyway, the point being.. Linux is strong due to it's following, and has great potential to do quite a few things Windows has troubles with. The choice is there for anyone to pick up that option if they so choose. What's the big deal?

    1. Re:it's not about killng by archen · · Score: 2, Insightful

      You will always have people who are for the "rebel" cause and against the norm. Some of us like going against the grain with something like Linux because we enjoy using it or messing with it for some reason. But many in society have this opinion that in order for them to "win" someone else has to "lose". With computer technology it's sort of tricky because market share really is important. If web browser market share is 99% IE, then Mozilla becomes literally irrelevent. If Mozilla has 50% market share, then it needs to be supported. Same with Linux to some extent, so Linux gaining market share is important. However some people have the rather misguided view that Linux must destroy Windows for them to "win".

      As a BSD person I can't say I'm overly concerned with where Linux goes, but we're all in the same boat more or less. Seriously I don't care as long as the OS continues to improve, and KDE continues to make gains.

    2. Re:it's not about killng by DZign · · Score: 1

      the fun is in the hunt, not the kill..
      linux has never been about killing windows, but enjoying what you do with it.

    3. Re:it's not about killng by costas · · Score: 1

      You're right; Linux was designed to kill Unix, not Windows --and it's doing pretty well in that regard.

      But I disagree that Windows hasn't killed Linux: the war isn't over yet, but Windows *is* winning. Linux has been in the press and widely known for 6-7 years now (quite a bit longer than OS X for example) and it has only competed against Windows successfully in the low-end server and embedded markets --i.e. where customization and size-of-footprint, not to mention low price are the main criteria for choice. Windows still dominates the desktop and hence the consumer mindshare. Linux has barely made a dent and OS X, with a shorter history behind it, surpassed it easily.

      So, why care? Simple; with consumer mindshare goes developer mindshare as well. We'll get new and improved sysadmin tech in Linux I am sure (how many switches can you add to grep and find though?) but the latest-and-greatest ideas and software will still be developed for Windows first. And if you think that's not important, ask those of us who used to use and love OS/2 or NextSTEP.

    4. Re:it's not about killng by strider44 · · Score: 1

      It wasn't even designed to kill unix. It was designed to run on a 386, that's all. People like the developers of Apache have adapted it into a Unix-killer, and people like the developers of KDE and Gnome have now adapted it into a Windows-killer. Though I think Windows won't go down without a fight, if at all. I don't actually see how Windows is winning. Linux has been *very* slowly but quite steadily gaining market share, and these things happen exponentially as word-of-mouth advertising increases. Nothings for sure, but the pendulum is currently only swinging one way.

    5. Re:it's not about killng by Anonymous Coward · · Score: 0

      Linux has barely made a dent and OS X, with a shorter history behind it, surpassed it easily.

      Bullshit. Linux was first released in 1993. The first Macintosh was released in, what, 1984 or something? OS X has nearly ten years more history behind it than Linux.

    6. Re:it's not about killng by costas · · Score: 1

      Sorry, OS X is a complete rewrite based on NextSTEP, it has nothing to do with "classic" Mac OS. IIRC NextSTEP started selling in 1989 (2 yrs before Linux), but the entire Cocoa layer of OSX and above and pretty much all of its apps were written for OSX not NextSTEP and those are much younger than Linux (or KDE or Gnome for that matter).

    7. Re:it's not about killng by cortana · · Score: 1

      I think the AC meant that OS X wouldn't have got very far without the history/legacy/support of all the Mac OS = 9 users who adopted it. Without the momentum from those users OS X would have sunk like a copy of BeOS.

    8. Re:it's not about killng by costas · · Score: 1

      If that were true, Linux could also claim the history/legacy/support of Unix/Multics... and that pretty much goes back to the begining of time() (i.e. 1/1/70)

    9. Re:it's not about killng by drooling-dog · · Score: 1
      Linux isn't really about killing Windows off..

      You're right, and the somewhat elitist side of me would actually prefer that it doesn't. Being Open Source and eminently flexible, Linux will continue to draw a user base that is both more technically adventurous and more resentful (and aware) of the restrictions and concealments that accompany closed-source licensing (to say nothing of the cost). Assuming that's true, a 10-15% desktop share might be about right; much more than that and I start to worry that we'll sink into the same cesspool that we've just managed to escape.

      That said though, it's critically important that Linux be accessible to anyone who wants to take the plunge, whether they actually do so or not. Fans of Microsoft et.al. should stop to consider how much worse life with the monster would be in the absence of such an alternative. You could even say that Linux and FOSS is their best friend.

    10. Re:it's not about killng by Anonymous Coward · · Score: 0

      > It was designed to run on a 386, that's all.

      Bah. The GNU project very explicity was creating a UNIX replacement, and Linux was designed to run the GNU userspace. Linux was "Unix-like" from Day 1, not when Apache got a hold of it. Even KDE/Gnome were concocted to be CDE replacements moreso than Windows replacements.

      One could argue that the Unix baggage of Linux is detrimental to it becoming a "Windows-killer". For example, OS X shunts the Unix stuff far out of the way of the average user and provides a completely non-Unix stack as the primary environment.

    11. Re:it's not about killng by cortana · · Score: 1

      Kund of. For the analogy to be complete, every Unix vendor would have had to proclaimed Linux as the One True Replacement, and dropped their existing products in favour of it.

    12. Re:it's not about killng by Anonymous Coward · · Score: 0

      They might not have explicity annoited Linux, but every UNIX vendor has shipped x86-based hardware that had superior price/performance to their UNIX/RISC based systems, at least on the lowend.

      Plus the vast majority of Linux installations use software (Apache, Sendmail, Bind, etc) that was ported from UNIX or BSD and not native to Linux.

    13. Re:it's not about killng by OwlWhacker · · Score: 1

      Linux isn't really about killing Windows off..

      No, but you can't blame people for thinking that way. And really, Microsoft has made it all about killing.

      With Microsoft it all seems to be some kind of battle to the death, heaven forbid that there should be competition.

      Windows seems to be all about killing off the competitors by lock-in, bundling and FUD, which is even worse, like poisoning your opponent rather than fighting them in a fair battle.

  19. Easy reply by elgatozorbas · · Score: 1
    Show me charts and stats and benchmarks that prove Windows superior to Linux in every measure and I'll not argue with you.

    Unfortunately, on short term the guy is probably right.

  20. Wrong wrong wrong by Weaselmancer · · Score: 4, Interesting

    From the article:

    Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions.

    I thought Windows was winning on the desktop? Isn't that what we're always hearing?

    Linux and Windows don't compete.

    Ok, so the whole "Get The Facts" campaign was done just for grins?

    Open source Unix, in which category I place Linux, BSD, and Darwin (the OS layer of Apple's OS X), is a 500,000-piece bag of Legos that comes with some drawings and a few models you can use, build on, or tap into as references for your own creations.

    Also wrong. There are distros that are like that, but there are distros that aren't. Linux offers choice, and not just the "bag of Legos" kind.

    And, just in case the article author reads this...ever hear of Wine? As soon as Wine gets DCOM working correctly and Installshield working right, it won't matter to Joe User if the OS is Linux or Windows, just so long as he can install TurboTax and Doom3. Check back in a few years, and we'll see if you're singing a different tune.

    --
    Weaselmancer
    rediculous.
    1. Re:Wrong wrong wrong by Mant · · Score: 1

      I think it was a pretty cruddy article, but I also think you missed something.

      Also wrong. There are distros that are like that, but there are distros that aren't. Linux offers choice, and not just the "bag of Legos" kind.

      I think that was the point actually. You can't just take a program written for Linux, put it on a Linux server, or all the Linux servers in your organisation and expect it to run.

      As for WINE, if it gets to the day it's as easy to install and runs stuff with WINE as Windows you are right, users won't care. I'm sceptical it will ever get there though, as Windows is something of a moving target, looks like Longhorn will introduce a bunch of new APIs, and most of the stuff will be made available for XP.

    2. Re:Wrong wrong wrong by iggymanz · · Score: 1

      heh, those "new api's" mean something written for XP or Longhorn won't run on Windows 2000 or NT 4 , and I can tell you as someone who works in the datacenters of BIG municipal and county governments that there's plenty of those older windows server boxes that won't be upgraded in the next 3 years. Meanwhile, in the corporate world, I work with mostly RedHat and some SuSE....mainstream enterprise software IS written that will run, is certified to run, on both of those, and for version RH 2.1 through 4, SuSE 8 to 9.x.

    3. Re:Wrong wrong wrong by Anonymous Coward · · Score: 0

      As soon as Wine gets DCOM working correctly and Installshield working right, it won't matter to Joe User if the OS is Linux or Windows, just so long as he can install TurboTax and Doom3. Check back in a few years, and we'll see if you're singing a different tune.

      In a few years, Microsoft will have obsoleted DCOM and InstallShield will have been updated to use the new Win64 (or whatever) libraries.

      WINE has been in a perpetual state of "almost there" for over a decade. They'll never be suitable for end-users because Microsoft keep moving the goalposts.

      Perhaps if a large player like IBM got involved that wanted to push their own OS with 100% Windows compatibility, then it would be different, but I don't think that's very likely. Companies with the resources to do that have the resources to make money from their own standalone platform without incurring the wrath of Microsoft.

    4. Re:Wrong wrong wrong by runderwo · · Score: 2, Insightful
      WINE has been in a perpetual state of "almost there" for over a decade. They'll never be suitable for end-users because Microsoft keep moving the goalposts.
      You assume that Windows developers will continue to follow whatever new path Microsoft lays out for them. This is doubtful, because it takes time (money) to learn all the new gadgets and work through the inevitable bugs and misdesigns. All WINE has to cover is the APIs used by the majority of existing and in-development programs. Once it gets "close enough", then developers will use it as a compatibility testing target just like they do with Win98.
    5. Re:Wrong wrong wrong by Anonymous Coward · · Score: 0

      All WINE has to cover is the APIs used by the majority of existing and in-development programs.

      These programs don't avoid new widgets as much as you might think. All it takes is one programmer using one new widget, and WINE users get screwed. Take into account that any given computer user would have dozens of applications, and the chances of WINE not working acceptably for them is high.

      Once it gets "close enough", then developers will use it as a compatibility testing target just like they do with Win98.

      Define "close enough", because they have been damn close for a decade, and developers haven't done any such thing.

    6. Re:Wrong wrong wrong by NutscrapeSucks · · Score: 1

      ever hear of Wine? As soon as Wine gets DCOM working correctly and Installshield working right, it won't matter to Joe User if the OS is Linux or Windows, just so long as he can install TurboTax and Doom3.

      Yes, Wine is completely essential to Linux ever becoming a replacement for Windows. But I see no serious effort to really integrate Wine into Linux distributions and get it working as transparently as possible. You need to buy some third party package, install it, and then hope it supports whatever program you want to run.

      The problem with Wine (besides being "almost there" forever as the AC said) is that they are still fighting with specific namebrand shrinkwrapped warez like "TurboTax and Doom3".

      What about the tens of millions anonymous windows applications used in the corporate world? All those wierd internal/vertical applications are the cornerstone of what keeps users on Windows. Until one can just double-click and go with 99% of all Windows programs, corporate Linux conversion is going to be a very expensive exercise in pain.

      --
      Whenever I hear the word 'Innovation', I reach for my pistol.
    7. Re:Wrong wrong wrong by FidelCatsro · · Score: 1

      On a side note , you can have linux on your legos or legos on your linux http://www.tldp.org/HOWTO/Lego/
      Its funny to think how simmilar linux and legos are , i mean i build space-ships out of legos and NASA builds space-ships(OS) out of linux

      --
      The only things certain in war are Propaganda and Death. You can never be sure which is which though
    8. Re:Wrong wrong wrong by LegendLength · · Score: 1

      You assume that Windows developers will continue to follow whatever new path Microsoft lays out for them.

      Developers will follow the money regardless of any obstacles. For proof of this, just look at any of the APIs that MS has given developers over the years (e.g. COM, MFC, NDIS). Monsters, all of them.

    9. Re:Wrong wrong wrong by Bent+Mind · · Score: 1

      I can't say much about TurboTax. I have an accountant (who incidentally uses Linux).

      However, I've found Doom3 works just great without Wine/Cedega. In fact, I'd say the native Linux version runs better (under Linux) than the native Windows version (under XP).

      --
      Request a Linux Shockwave player here: http://www.macromedia.com/support/email/wishform/
  21. I agree by PhreakinPenguin · · Score: 1

    before I read the article I agreed with the statements. And yes, I did read it. I think that people are finally starting to realise, at least in the OSS community that linux will never overtake Windows in the desktop market. Why? Because people, IE the general public, associate computers with Windows. If it says made for Windows XP on a new workstation, the average Joe is going to feel comfortable. If it says, made for Linux, people aren't going to feel as comfortable. Just ask Redhat how well packaging up linux for the desktop worked out for them. It worked so well that they abandoned it in favor of the server/enterprise market. A place where they already had a huge share. Trust me, if anyone could have swung the desktop momentum it was Redhat and you see how that turned out.

    --


    My sig of choice is Marlboro
  22. It's a "distribution" by Anonymous Coward · · Score: 0

    Linux itself may be simply an operating system, but since you find it packaged with such a plethora of applications all bundled together in various distributions, I think it is safe to say that Linux can hold its own. Further, some distributions might better server an enterprise's needs thereby making a more desirable choice.

  23. Only windows can kill windows by E+IS+mC(Square) · · Score: 2, Interesting

    Linux has a geekey feeling to it. Probably, Joe sixpack will never have means to replace his PC with a Dell packaged linux, either due to his lack of geek-ness, or due to penetration of windows in his (and everybody else's) mind (unknowinlgy).

    Its upto Windows now to kill itself - by exposing itself to hacks, viruses, trojans. If the situation reaches to a point where windows is *completely* f*cked-up, then may be linux will see more and more interest - being the only cheap alternate to ship somehting to Joe.

  24. Typical by dasOp · · Score: 1

    Writing that article in the first place is sure to feed the flame before the average /. crowd even reads it.

    But posting it on /., now thats pouring gallons of kerosine on it.

  25. Opinions by lemnik · · Score: 3, Insightful

    Linux cannot make a dent??? I'd say it already has, else why is M$ running "Get the facts"?

    That said, there is an important point here: Linux probably won't "kill" windows, it will be RedHat, or Mandrake, or Debian, or even Linspire :/

    Linux at it's heart is nothing more than a Kernel, it's a GNU/Linux distro that people ultimatly install (mostly anyway).

    1. Re:Opinions by Xarius · · Score: 1

      That said, there is an important point here: Linux probably won't "kill" windows, it will be RedHat, or Mandrake, or Debian, or even Linspire :/

      Linux at it's heart is nothing more than a Kernel, it's a GNU/Linux distro that people ultimatly install (mostly anyway).


      Someone mod this guy +1, pedantic

      --
      C17H21NO4
    2. Re:Opinions by snorklewacker · · Score: 1

      > Linux cannot make a dent??? I'd say it already has, else why is M$ running "Get the facts"?

      Don't even need MS's reaction -- just look at the server rack.

      On the desktop, perhaps there's a point. But yunno, except for Bob "Death of the Internet predicted and hey I invented Ethernet" Metcalfe, pundits are rarely ever called to the carpet when their prognostications turn out so wrong.

      By the way, I've now had a few non-techie acquaintances install Linux. Sure enough they haven't a clue what you're talking about with this "just a kernel" and "Guh-NOO Linux" nonsense.

      --
      I am no longer wasting my time with slashdot
  26. True, but for the wrong reasons by ites · · Score: 4, Insightful

    Linux as a brand cannot compete with Windows, because Linux is not a brand, not a product. There is not even a single definition of what "Linux" is, except a bunch of software running on top of a specific kernel.

    Even the concept of "competition" is a straw man.

    Linux represents a total, brutal, and unstoppable commoditization of technology that follows the same rules which drive "Moore's Law". When you remove the costs of improving a technology, its marginal cost will fall to zero as people compete to be the key suppliers.

    Software is basically becoming free, and this is what will kill Windows, whether or not it's something called "Linux" that takes over.

    Most likely, "Linux" will never become more than a niche OS, excellent for servers but rare for desktops. But what it represents - unlimited and perfect software at no cost - will, inevitably, rule the desktop as it will rule every single computing platform, for the simple reason that no amount of lock-in or marketing is going to get people to keep paying more than the going rate for a commodity.

    Apple's strategy - where the OS and a bunch of software is basically thrown in for free - is the trend of the future.

    I hate to say it, because I truly love using Microsoft's well-engineered products, but between the commoditization of their core markets and the parasites eating their way in from the internets, they are dead, Linux or no Linux.

    --
    Sig for sale or rent. One previous user. Inquire within.
    1. Re:True, but for the wrong reasons by markov_chain · · Score: 1

      There is not even a single definition of what "Linux" is, except a bunch of software running on top of a specific kernel.

      Good point. The mainstream thinks of computer systems in terms of their interfaces. "Windows" says very little about the kernel, while "Linux" to me refers to a kernel. Here lies a problem for widespread adoption: what word will serve to identify a Linux system to the mainstream? Currently we have: Redhat, Fedora, Debian, Gentoo, Ubuntu, Mandrake, Slackware, KDE, Gnome... I bet MS is laughing their butts off just like they did at the Unix wars of the 80's.

      --
      Tsunami -- You can't bring a good wave down!
    2. Re:True, but for the wrong reasons by Peaker · · Score: 1

      Microsoft's well-engineered products

      Which ones? I mean, is there a single well-engineered product from Microsoft?

      the commoditization of their core markets and the parasites eating their way in from the internets

      Parasites? who?

      I personally look forward to the inevitable death of copyright as it became a barrier to progress instead of an incentive towards it.

    3. Re:True, but for the wrong reasons by RailGunner · · Score: 2, Insightful
      I hate to say it, because I truly love using Microsoft's well-engineered products

      Me too, I really like their optical mice. They feel more comfortable in my hands than a Logitech or generic brand.

      Oh, wait, you were talking about Windows? Well Engineered? To quote Dan Akroyd: Jane, you ignorant slut.... ;)

    4. Re:True, but for the wrong reasons by Anonymous Coward · · Score: 0

      I suspect the parent poster was being mildly sarcastic. I don't think I've ever seen someone describe a Microsoft product as "well-engineered" except when followed by the phrase "for a bunch of one-eyed drunken monkeys".

    5. Re:True, but for the wrong reasons by mpe · · Score: 1

      Which ones? I mean, is there a single well-engineered product from Microsoft?

      Their hardware isn't bad. But they just badge it anyway :)

    6. Re:True, but for the wrong reasons by snorklewacker · · Score: 1

      > "Windows" says very little about the kernel

      Come on, it always refers to Win32 now, and typically means the NT kernel at that. When you say Linux, you're probably thinking of the ELF-supporting modular kernel, right?

      > what word will serve to identify a Linux system to the mainstream?

      Linux.

      I really hate to use car analogies, but people don't have a problem with not only different makes, but even all the different models, from a mini to a minivan. Whoever can market best will communicate what their distro's strengths are most effectively, and people will catch on. The market really isn't as stupid as you think.

      --
      I am no longer wasting my time with slashdot
    7. Re:True, but for the wrong reasons by markov_chain · · Score: 1

      Come on, it always refers to Win32 now, and typically means the NT kernel at that.

      I know it does, but ask a random person on the street and they will most likely think of the interface.

      When you say Linux, you're probably thinking of the ELF-supporting modular kernel, right?

      Close-- I think of Linus' tarballs available on kernel.org. No interface or system included at all here.

      I really hate to use car analogies, but people don't have a problem with not only different makes, but even all the different models, from a mini to a minivan.

      They don't because they all have the same interface. It's like Windows with different themes. To butcher the car analogy further, I'm afraid that Linux distros are more like a car with the steering wheel on the right, one without a brake pedal that you're supposed to stop via engine braking, one that you steer with a joystick, or one with tracks instead of wheels.

      Whoever can market best will communicate what their distro's strengths are most effectively, and people will catch on. The market really isn't as stupid as you think.

      I hope so. :)

      --
      Tsunami -- You can't bring a good wave down!
    8. Re:True, but for the wrong reasons by jusdisgi · · Score: 1

      I hate to say it, because I truly love using Microsoft's well-engineered products...

      Bwahahahaha! Yeah! +5 Funny!

      --
      Given a choice between free speech and free beer, most people will take the beer.
    9. Re:True, but for the wrong reasons by Burz · · Score: 1

      Which ones?

      They exist. IMO Excel and Access are both excellent and the latter is a truly a key to Microsoft's success: You get a IDE where people don't even realize they're in an IDE. I don't think MS would have half their server market share without tech-savvy managers and and other staff whipping up ad-hoc applications in Access/VBA that spread across their organization until the need arises for a unified, server-based solution.

      Open source has been neglecting the tech "middle class" here... the power users. No authoring platform has emerged for them on Linux.

      For those who eventually want more than Access/VBA, there is the excellent Visual Studio.

      With that said, MS Windows and Word are awful.

    10. Re:True, but for the wrong reasons by Anonymous Coward · · Score: 0

      apples strategy is not to throw the os in for free.

      their strategy is to get clients that will pay for the os when they're buying the computer, pay for the yearly update and pay for the media player(and just include a shareware nag-ass version).

      if there were only apple laptops would cost 7000$ and people would be happy about it.

    11. Re:True, but for the wrong reasons by Anonymous Coward · · Score: 0

      > To quote Dan Akroyd:

      Not a bad one. But a bettter paraphrasing would be:

      Windows is to Well Engineered as sitting in a chair and playing with yourself is to sex.

    12. Re:True, but for the wrong reasons by heli0 · · Score: 1

      Apple's strategy - where the OS and a bunch of software is basically thrown in for free - is the trend of the future.

      $100/yr for OSX updates is your definition of 'free'?

      --
      Whenever the offence inspires less horror than the punishment, the rigour of penal law is obliged to give way...
  27. Before everyone flames him by Raul654 · · Score: 4, Interesting

    His first sentence is right on the money - "Linux is established and has a niche". So the question is - what is holding it back? And here, he misses the bleeding obvious - every single one of his points (from TFA - the reasons to keep unix or windows around, the cost analysis, etc) is flatly wrong or misses the mark. The answer is, I think, obvious --- Linux is the OS designed by geeks, for geeks. It's the classic example of overengineering the wheel. The problem is, I have yet to see an interface for *nix that does as good as job as windows does of 'packing everything under the hood' and making an operating system that (as a friend of mine, the chief sysadmin for Connectiv would say) "protects users from their own stupidity". When someone can come up with an interface that is as intuitive and user-friendly as windows, then (and only then) can linux hope to compete in the desktop market.

    --


    To make laws that man cannot, and will not obey, serves to bring all law into contempt.
    --E.C. Stanton
    1. Re:Before everyone flames him by dynamol · · Score: 2, Insightful

      Well if you are right then I hope linux never competes. Conversly I believe that people are becoming more and more educated about their computers...while linux is becoming easier and easier to use. Linux..maybe...but OSX...the coolness factor alone is about to put Apple back on the map for real...through in better processors for good luck and you have a winning solution for Joe six pack. Just my worthless two cents

    2. Re:Before everyone flames him by Anonymous Coward · · Score: 1, Insightful

      errrrr

      speaking as someone who learned solaris before learning windows, I would have to say that windows is for magicians who know the magic words and where the bodies are burried while unix is clear and simple to understand

    3. Re:Before everyone flames him by Coolmoe · · Score: 2, Insightful

      "The problem is, I have yet to see an interface for *nix that does as good as job as windows does of 'packing everything under the hood' and making an operating system that (as a friend of mine, the chief sysadmin for Connectiv would say) "protects users from their own stupidity"."

      Yes because Joe and Jane six pack (ive always wanted to make them a couple like Ken and Barbie) have always been really well protected from themselves. Downloading and installing every piece of shareware crap that they can find then install with a few clicks with administrative access to the machine. Then repeat this process till the system tray meats the quick launch bar. And it isint windows until icons cover 3/4 of your desktop at 1024 x 768 at least! Yea sure windows really protects it's users from itself. In a boxed unix solution nobody goes out to fetch tons of crappy software they couldent install anyway. Windows keeps people from being intimidated by advanced hardware that a PC really is. This is where windows got it right with the patented "plug and pay" interface. MS ought to drop that "where do you want to go today" crap and say Windows so easy to install even a snot nosed kid can do it. Ok im done writing my version of the trollish crap that article was.

      --
      Got hosting
    4. Re:Before everyone flames him by mpe · · Score: 1

      The problem is, I have yet to see an interface for *nix that does as good as job as windows does of 'packing everything under the hood' and making an operating system that (as a friend of mine, the chief sysadmin for Connectiv would say) "protects users from their own stupidity".

      Thing is that "protecting users from their own stupidity" is about the last thing Windows does. Not only are there a myriad of applications which require to be run as "administrator" even a supposedly unprivileged user in Windows still has the ability to seriously mess things up.

    5. Re:Before everyone flames him by Anonymous Coward · · Score: 0

      nice namedrop. shouldn't you say his name though?

    6. Re:Before everyone flames him by Anonymous Coward · · Score: 0

      When someone can come up with an interface that is as intuitive and user-friendly as windows, then (and only then) can linux hope to compete in the desktop market.

      Mac OS X.

    7. Re:Before everyone flames him by Anonymous Coward · · Score: 0

      Are you saying that Windows does protect users from their own stupidity?

    8. Re:Before everyone flames him by lurch_mojoff · · Score: 2, Insightful
      The problem is, I have yet to see an interface for *nix that does as good as job as windows does of 'packing everything under the hood' and making an operating system that (as a friend of mine, the chief sysadmin for Connectiv would say) "protects users from their own stupidity".
      Apple's Aqua for Mac OS X does a fairly good job in that respect. It is not for Linux, nor it does the same job as Windows, but it's for *nix (BSD) and is pretty "user-friendly" (i.e. you do not have to get your hands dirty if you don't want to).
  28. Finally! by DaveV1.0 · · Score: 1

    Someone speaks the truth! Now, can we get on with life? And if you want to make a serious dent in MS Windows, let's develop a better OS targeted directly for the desktop user. That is if someone hasn't beaten us too it.

    --
    There is no "-1 offended" or "-1 you don't agree with me" mod options for a reason.
    1. Re:Finally! by Anonymous Coward · · Score: 0

      What are you talking about ? Didn't you notice that 2005 is the year of linux on the desktop?

      But you do have a point where the server editions of Windows are taking beats of a far superior OS for server tasks like linux. On the desktop at the otherhand thats a whole other story. And I don't see it evolving to a really competitor on the desktop, not if some peeps don't get there act together or without making comprimisses... .

    2. Re:Finally! by mpe · · Score: 1

      Now, can we get on with life? And if you want to make a serious dent in MS Windows, let's develop a better OS targeted directly for the desktop user.

      There's no one such entity as a "desktop user" in the first place. The term covers everything from the home machine which is constantly having things installed and uninstalled on it to the corporate machine which runs only one application operated by people who would be looking for another job if they even though about changing any settings.

  29. Windows can't beat Linux by FlashBuster3000 · · Score: 1

    How's that? ;)

    Depends on the point of view, i guess.

  30. Muddled thinking ahoy! by Anonymous Coward · · Score: 0

    What exactly is this "Platform" he keeps talking about? The author doesn't even touch on the idea. How is Windows a "platform" and Linux not? Apparantly it's because "Windows fills in all the blocks between the hardware and your apps. It does it in ways that you can't alter, but which you can use in different ways." Oh, well that's clear then.

    "You can code with the tools of your choice and in the programming language of your choice, and unless you stray too far from the rule book, everything you create will interoperate with everything others write for Windows." which as we all know, is nothing at all exactly like Linux and UNIX oh-no!

    According to the author "An operating system is a rack into which device drivers and APIs are inserted. A platform is a rack into which applications are inserted." Yes, and a toaster is a beige fish into which sunbeams are rotated. Pass me the acid, Tom Yager!

  31. Well... by Anonymous Coward · · Score: 1, Funny

    It won't kill Windows. But it certainly will kill BSD. BSD is dying.

  32. The author's lack of insight is apparent by bersl2 · · Score: 1

    The point never has been to obliterate Windows.

    At best, the "Linux on the desktop" goal is to have enough users so that everyone sees it as a primary platform. There needs to be enough users that it becomes economically viable to always consider a native Linux port for any application.

    But of course, people like the author don't understand the concept of coexistence.

    1. Re:The author's lack of insight is apparent by e2d2 · · Score: 1

      Most posters on this site don't understand coexistance apparently either. Since when has the GNU philosophy changed from "freedom" to "kill windows"?

  33. What is he using? by xtracto · · Score: 1

    You don't use an OS that you don't like, and if that's not true (e.g. you're forced to use a pre-installed OS), then you probably wouldn't know any better alternative if you've been using only one OS.

    If a Linux-only user said Windows is better, or vice versa, what does that mean? How does he come to this conclusion? The most credible answers should be from Multi-OS users.

    --
    Ubuntu is an African word meaning 'I can't configure Debian'
  34. What content? by Martz · · Score: 1

    TFA has more advertisements, navigation and extra widgets around it that content. It's certainly not conclusive, it's someones opinion based on what appears to be very little fact and lots of speculation. However, like others say - for me as a linux desktop user and server administrator - it doesn't matter to me what the market share of linux is. The only people it matters too are the corporations and I very much doubt we'll see them saying "Yes, it's happened.. our product has slipped from 95% to 20%. We lost out to the better product". Hrm!

  35. FPLOL by Anonymous Coward · · Score: 0

    linux might stand a chance if all the various desktops didn't look like crap

    1. Re:FPLOL by Anonymous Coward · · Score: 0

      you are absolutely right! If they had a sweet UI like Windows or OSX, maybe they'd stand a chance. But they'd have to have the same functionality across all linux platforms. They should take a page out of Bill Gates's book.

  36. There is No Compedition by Anonymous Coward · · Score: 0

    Linux and Windows, in my personal opinion, isn't suppost to be compeditive. Windows is more user friendly but Linux is safer to use.

    People use Windows because that's what they were taught in school (like I am now). I'm in high school in my technology essentials class. We're runnings Windows XP Professional.

    If Linux was suppost to be capible, then there wouldn't been any hard working programmers to work on creating software... why bother with something that's already perfect?

    But think about it, would you but a normal home Windows XP computer on the internet for your business? You'd have to be out of your mind, that's why's there's Linux... to power everthing else that Windows can't.

  37. Linux OS by IEEEMonkey · · Score: 1

    It really is too bad that he is right. I have used Linux since 1994 and I have always thought of it as my tool. I have had consulting jobs where I did not even consider installing Linux, plain and simply because the customer would never have been able to support it. The IT staff was two people, one who knew how to turn on the computers and servers and one who knew how to crash them. Not being one of those people who builds in repeat work I really had no choice in OSes. I might disagree that the Apple OS cannot replace Windows, theoretically, but practically it cannot. Bill Gates was smart early on by staying focused on DOS, licenses, and getting his OS on as many machines as possible. It is the sheer quantity that worked in Bill's favor and he is the, hands down, winner.

  38. *pop* by dlasley · · Score: 0

    *fss...*

    My bubble shielding me from reality just burst! OMG! Linux will not rule the world?!?!?

    Seriously, two points:
    - an opinion on InfoWorld is not exactly gospel;
    - even though the Linux kernel and all the associated applications make for a nice developer platform, they don't all mesh into something that every PC manufacturer wants to preload on their systems, nor something that a majority of the public wants to rush out and buy every time a version update is released. But why is that a bad thing? Linux and the rest of GNU are wonderful for those of us who want to develop on, maintain, or simply enjoy the use of a stable and flexible "platform". SFW - it never gets a huge market share, winds up directed by market-droids and Executive Vice Presidents in search of ridiculous yearly bonuses. I don't see the downside, as long as there are still folks who buy it for certain uses and license it for even more (not to mention those of us who test and contribute whenever time allows). Wasn't that a key tenet of GNU from the beginning ... ?

    My $0.02, adjusted for inflation

    --
    when it rains, it gets real soggy. when it pours, i'm under the tap just _waiting_ for the joy
  39. Linux can't kill windows? by Anonymous Coward · · Score: 0

    Yeah right.
    sudo cat /dev/urandom > /dev/hda1

    Let it run for a while :o)

    -r

  40. Devoid of content? by Alioth · · Score: 1

    I agree that Linux isn't going to kill Windows - even if Linux suddenly becomes a huge runaway success, there will still be Windows.

    However, the article's reasoning is devoid of content. It goes on about how Linux 'isn't a platform' [for servers], just an OS. Of course, Linux is just a kernel. But he's saying that as if there aren't things that run on the Linux kernel (like, say, Apache, PHP, PostgreSQL/MySQL, Perl etc. for large values of etc.) that come with any distribution that you are actually going to end up using which in my book (and any sane person's book) DOES make a platform and addresses all the things he reckons Linux doesn't have.

    The article isn't comparing like with like - it's comparing the full Windows server distribution with the Linux kernel alone (or perhaps just Linux + the GNU tools and C compiler), but completely ignoring all the stuff that comes with a server-oriented distro.

    The article was either written by someone who has never used a recent (within the last 6 years or so) Linux distro, or someone who is trolling.

  41. Nothing to see here. Move along. by petrus4 · · Score: 1

    Just another pundit trying to secure his livelihood by promoting the status quo. I've commented on that particular syndrome before. The way that I know that that is what he is doing is because he says he can't refute Linux's technical superiority...but then goes on to claim that Windows is better overall, which they all do. By initially making the technical concession first, and then making their second claim, they try to have their cake and eat it...appear to have journalistic integrity while still maintaining the status quo.

    I agree with one of the earlier comments that the editors need to start screening articles of this nature more carefully. They don't tell us anything we don't know, or that hasn't been said before.

    The author of this article is right in one respect, though...Strictly speaking, Linux won't kill Windows...Microsoft are going to be responsible for their own demise, to a large degree.

  42. nonarticle by lliquidcamel · · Score: 1


    I'd just like to say that this article is a hedgehog, a way, and probably th best way -- to obfuscate and confuse -- but you can't turn this article into truth. You can put a picture of a guy, and a title - and even put it on a wed site - but you can't turn this drool into a another nonarticle - it already is one. ... Stay tuned; I'll tell you about it.

  43. Who cares? by R.Caley · · Score: 1

    Real beer will never kill Budweiser and Tennants Export. Doesn't make a bit of difference to anyone sane. The important issue is to have the option to drink beer, not that you don't have the option to drink what you wouldn't want to drink anyway.

    --
    _O_
    .|<
    The named which can be named is not the true named
    1. Re:Who cares? by Punboy · · Score: 1

      Wow. That gives whole new meaning to "free as in beer"

      --
      If you like what I've said here, and want to read more, go to http://www.krillrblog.com
  44. *Somebody's* going to kill Windows by Anonymous Coward · · Score: 0

    And in this horse race, Linux is the favorite.

    But in any horse race, even the favorite will probably lose. He may be the single horse most likely to win, but I'd bet "field" and take all the rest any time I could.

    1. Re:*Somebody's* going to kill Windows by fr0dicus · · Score: 1

      You should probably substantiate your Subject field there.

  45. Tipping point. by MisanthropicProgram · · Score: 1

    Maybe ...eventually? GNU/Linux will hit a tipping point (see this) and catch on like wildfile. After all, a lot of foriegn countries are using it over Windows and a lot of those foreign (non -US) countries are fast growing economies.

  46. Horseshit. by torpor · · Score: 1

    You can so turn Linux into a platform.

    The way you do that is wrap hardware around it.

    Enough said.

    --
    ; -- the corruption of government starts with its secrets. a truly free people keep no secrets. --
  47. Should it? by bcmm · · Score: 1

    I for one don't want "Linux to kill Windows" any more than I want "Firefox to kill IE".

    Ideally, Windows should die and everyone should be free to run the same programs on anything POSIXish they have around: Linux, BSD, OS X, Solaris, etc., just as IE should die and everyone should be able to use and W3C compliant browser.

    When all the apps/web pages are compatible with all the OSs/browsers, people will use what is best because there will be nothing to make it hard to switch.

    --
    # cat /dev/mem | strings | grep -i llama
    Damn, my RAM is full of llamas.
    1. Re:Should it? by Blitzenn · · Score: 1

      " I for one don't want "Linux to kill Windows" any more than I want "Firefox to kill IE"."

      You started off on the right foot. There is certainly room for both in this world. It would be foolish to remove choices from the public. We would be doing the same thing then that we complain MS does to us, remove choices.

      "Ideally, Windows should die... ...just as IE should die... "

      You did a 180 on us here and completely contradict yourself. I don't understand. Personally I get sick of the people who are adimate about any platform they don't like should 'die'. Whatever side of the fence you happen to be on. To me it's like saying that all cars should be removed from the market, because trucks are clearly better and there is no need for a car if you have a truck. Simply closed minded and dumb.

    2. Re:Should it? by bcmm · · Score: 1

      OK, Windows as it is now should die. If MS decides today that Longhorn is going to be POSIX compliant and have a built-in X server and run "standard" (not as in defacto) apps, then it should continue to be used.
      My point is that as long as Windows holds most of the market, everything is incompatible. There are now only really two OSs (excepting handhelds and embedded): UNIX-like systems (OS X, Linux, BSD, Solaris), which are mostly compatible with each other, and Windows, which isn't. Without Windows, almost all OSs would have very similar APIs, and it would be much easier to write code which would compile on any of them.

      --
      # cat /dev/mem | strings | grep -i llama
      Damn, my RAM is full of llamas.
  48. wont happen that way by FudRucker · · Score: 1

    Linux wont kill Windows, microsoft will commit corporate suiscide, (from shooting itself in the foot too many times)

    --
    Politics is Treachery, Religion is Brainwashing
  49. Yes and No by brontus3927 · · Score: 1
    One the one hand, I can see where the author is coming from. I'd think if Apple was going to grab a considerable marketshare of the desktop marketshare (Techwhack reports it at 2.9% right now). However, the Mac Mini seems to be a popular box and could help to take another bite out of the market.

    On the other hand, I think the single biggest reason (beyond that users have "grown up" with Windows) that Linux is such a minor player in the desktop market is lack of applications, a problem plauging the Apple platform. I read an article a few months back (no link sorry) where the author claimed that 5% marketshare would be the tipping point for linux, where it would snowball. Once linux gets enough marketshare, software manufacturers have to release linux ports or risk alienating a strong userbase. Once there are major applications for linux, more users will use it. More users mean more applications, which mean more users.

  50. Ouch,....but that never was the REAL point. by i_want_you_to_throw_ · · Score: 1

    Where I work I would NEVER replace the Windows desktops with Linux ones. People are too familiar with Windows and it IS a standard at least in that regard.

    What I advocate, and do, is use Linux where it counts, the servers. Being a Perl developer I am always creating great apps that the MS people can't match in my establishment and I do it with the LAMP methodology (Linux/Apache/MySQL/Perl). Doing it cheaper and better is what keeps Linux there AND growing. Right now I am using Open Source to run a survey app collecting data via PDFs and backing it into the MySQL db. The alternative? Spending 60K to another contractor that wanted to use a MS solution.

    I only see Linux growing where I am, especially now thatwe've started on a campaign to replace Solaris with Linux.

    As long as we are having budget problems like every other agency we're going to up the Linux usage especially when we can do things like save 60K in one pop like this.

    1. Re:Ouch,....but that never was the REAL point. by amrust · · Score: 1

      Yep. In a social vaccuum, maybe Linux would work in corporate desktop environment situations. But any office I've ever been in, the cost of re-educating every employee on the simple mechanics of getting around the interface, coupled with the vendor modification costs that would ensue from switching away from Windows, and you haven't saved a dime in the transition. I know, WINE, and all that... But most of the niche-specific apps that some companies run will barely support a different version of Windows that the one you ran before, let alone Linux.

      --
      VOTE!
    2. Re:Ouch,....but that never was the REAL point. by mdwstmusik · · Score: 1

      But any office I've ever been in, the cost of re-educating every employee on the simple mechanics of getting around the interface...

      I am so sick of the whole "cost of retraining exceeds the licensing savings BS!" The company that I work for just replaced 1/3 of our Windows/MSOffice desktops with Linux/OOo in order to expand, and still stay within this years licensing budget. The total amount of re-training was about 5min of instruction, and a sheet of paper like this:
      Evolution=Outlook
      Calc=Excel
      Writer=Word
      Impress=Powerpoint
      etc...
      And, not only did we save on Windows/MSOffice licenses, we also saved on Antivirus and AntiSpyware software licenses. Not to mention the fact that IT has 1/3 more time to spend expanding available services. (Since we don't have to worry about viruses/spyware on the Linux pcs.)

      --
      "Oh, what sad times these are when passing ruffians can say 'ni' to helpless old ladies."
  51. Not flamebait by Anonymous Coward · · Score: 0

    It was what I thought, too. The guy puts an impossible requirement (more user-friendly, yet more secure?) and that's it.

  52. Evidence one way or the other by Anonymous Coward · · Score: 0

    Can anyone point to empirical evidence one way or another that Linux has gained any significant desktop traction in the last five years? I see nothing of any note. The only thing I can find is 1% of all Google users, as of June 2004, and it hadn't altered from that since I remember Zeitgeist starting.

  53. Platform is the new buzzword by ehack · · Score: 2, Interesting

    Platform is the new brand buzzword. Windows is a Platform. Anything that does not have rock-firm foundations is a platform - ie what used to be called middleware before. By that standard, the GNU utilities are a platform, Linux is not.

    --
    This is not a signature.
  54. Well that was a load of nonsense by pjc50 · · Score: 1

    The article claims that Windows is a "platform" for application development, and that UNIX of all kinds is a "non-platform". He then goes on to say that OSX+Java is a platform. Huh?

    Clearly he's not heard of the LAMP way of building applications, which could just as easily be called a "platform".

    Anyone care to define "platform" sensibly?

  55. Re:If you want to RTFA, but give no ad click bonus by Cronky · · Score: 1, Funny

    Nice one.... Well nice bit of copyright infringement (??) anyway ;-)

  56. You should be optimisitic by SerpentMage · · Score: 5, Interesting

    I regularly use three platforms; Windows, Linux (Fedora) and OSX. Conclusion? I cringe at having to use Windows. I find that once you learn UNIX it is faster to get anything done. Albeit you have to learn UNIX.

    Now having said that, what I see more off are peacock articles. All fluff and very little facts because the three operating systems are TOO similar. Compare it to cars. These days all of the cars are good enough! They will last four years without too many problems. So then how do you distinguish yourself? Write articles like a peacock struts its feathers, all emotional.

    The easiest way to illustrate this peacock argument is to take a bushman from the jungle and get them to figure out what a computer does. Without helping them. My guess is that the bushman will have a hard time figuring out what the mouse is for. Most likely they will use the mouse as a slingshot and head back into the jungle. I am not saying that bushmen are dumb. I am saying that computers require some upfront learning time regardless of the OS used.

    --

    "You can't make a race horse of a pig"
    "No," said Samuel, "but you can make very fast pig"
    1. Re:You should be optimisitic by hepwori · · Score: 2, Funny

      Most likely they will use the mouse as a slingshot and head back into the jungle.

      Reminds me of this Onion article.

      KABINDA, ZAIRE--In a move IBM offices are hailing as a major step in the company's ongoing worldwide telecommunications revolution, M'wana Ndeti, a member of Zaire's Bantu tribe, used an IBM global uplink network modem yesterday to crush a nut.

      ...

      According to Ndeti, of the modem's many powerful features, most impressive was its hard plastic casing, which easily sustained several minutes of vigorous pounding against a large stone. "I put the nut on a rock, and I hit it with the modem," Ndeti said. "The modem did not break. It is a good modem."
    2. Re:You should be optimisitic by shutdown+-p+now · · Score: 1

      Software, that's the problem. Give me all the software available for Windows or even Mac (or at least a replacement of it), and I'll be there. For now, still dual-boot.

    3. Re:You should be optimisitic by Wordsmith · · Score: 1

      Actually, the BushMen know all about the Internets already. And now I hear one has an iPod.

    4. Re:You should be optimisitic by fitten · · Score: 1

      Depends... I use Linux 99% of the time at work and I have both Linux and Windows boxes at home. I've been using Un*xs since around 1986. Depending on the task, I can do some things faster on Windows than Linux and some faster on Linux than Windows.

    5. Re:You should be optimisitic by Gr8Apes · · Score: 1
      I regularly use three platforms; Windows, Linux (Fedora) and OSX. Conclusion? I cringe at having to use Windows. I find that once you learn UNIX it is faster to get anything done. Albeit you have to learn UNIX.
      I have used many OSes (Everything from DOS and Win 3.x, 9x, NT 3.x, 4.x, OS2 (all), OSX, Linux (various versions dating back to 0.x kernels) VMS and various other big frame OSes)

      My favorite OS? OS/2 by far, it was just a smooth pleasant experience. Why not OS X? Well, because my OS/2 experience was unfettered by having to unlearn numerous bad Windows habits I've picked up over the years, some even reinforced by KDE/Gnome (gasp - don't shoot me!).

      To be fair, I've fixed most of my issues with OS X at this point with the addition of Quicksilver and some configuration options combined with unlearning bad windows habits.

      There's many things to like about Apple's OS X, and I'm really looking forward to Tiger. Don't let the below list put you off, just realize as with any OS, there's some pimples you'll have to live with. If you're coming from the Windows world, you've probably gotten so used to them you don't even notice them anymore.

      The things that currently bother me:

      1. minimized windows not showing up with Cmd-Tab or Cmd-` (using Cmd-H hides all windows of that app, I wish I could hide just the active window sometimes)
      2. The non-standard implementation of mod/arrow keys for moving about various applications. Apple should mandate a standard somewhere so that software vendors adhere to a common key mapping.
      3. This one really bugs me: in all the main OS X browsers (Safari, Firefox, Camino) you cannot Tab to a checkbox or radio button. Why the hell not?!?! This is annoying as hell when filling out forms on a web page.
      4. On save dialogs not being able to see a directory hierarchy. Seeing the list of most recently used folders is nice, but heirarchies are very useful)
      5. Not being able to mouse click in Finder or a save dialog to go to the parent directory (keyboard Shift-Cmd-Up arrow is not intuitive, and requires jumping back and forth between mouse and keyboard. Apple should add a simple icon or the old wonderful ".." (No, I've not enabled show all files/folders in the Finder yet)
      6. Speaking of enabling view all files/folders - functionality such as this could be much improved by a graphical configuration utility (gasp again - but trying to type interesting lines like "defaults set" or whatever the command is is relatively obscure and counter-intuitive for a graphical OS.
      7. Again for a renowned user-friendly GUI app, it is suprisingly difficult to do some graphical copy, cut, and paste operations. There is a lack of consistent keyboard/mouse functionality across all apps and functions.
      Note that I mainly post this in hopes of people providing insight into how to resolve some of these, while others are just noted.
      --
      The cesspool just got a check and balance.
    6. Re:You should be optimisitic by Anonymous Coward · · Score: 3, Insightful

      I regularly use three platforms; Windows, Linux (Fedora) and OSX. Conclusion? I cringe at having to use Windows. I find that once you learn UNIX it is faster to get anything done.

      That's your conclusion. My conclusion is that you just don't know Windows.

      For example, how many of your regular tasks have you offloaded onto the Windows Scripting host? Unix users all have their favourite scripting language, and Apple users are always blathering about how wonderful AppleScript is, but Windows has just the same functionality, except it can control native GUI applications well (unlike Perl/Python on Linux, which are great for munging text files but not so great for hooking a word processor and a spreadsheet together) and you can choose what language to use (unlike AppleScript, which forces you to use Apple's horrible proprietary COBOL clone).

      Windows sucks in direct proportion to the ignorance of its administrator. Badly-administered Windows sucks more than anything in the world, but for most purposes, well-administered Windows can hold its own with any Unix you care to name.

      If you have to use it a lot, I really suggest you learn how to use it properly. It will make your life a lot more pleasant.

    7. Re:You should be optimisitic by The_reformant · · Score: 1

      I have to come down to the contrary, my home PC gets used cheifly for the following things: Image editing, midi sequencing/ audio editing, world of warcraft. None of these are even feasible under any unix-like environment let alone faster. I'd also raise the point that Open office isnt as fast as word for creating .doc's in a typical work environment. Unix-like environments are great for some types of task, for example I program expert systems and linux is far more productive for that task, however for the majority of computer users windows is still much faster and more productive than unix

      --
      I have discovered a truly remarkable sig which this post is too small to contain.
    8. Re:You should be optimisitic by rokzy · · Score: 4, Informative

      >This one really bugs me: in all the main OS X browsers (Safari, Firefox, Camino) you cannot Tab to a checkbox or...

      3. there's an option in Keyboard & Mouse->Keyboard shortcuts to "turn on full access". tried that?

      4. tried clicking the down arrow to the right of the save name?

    9. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      4. On save dialogs not being able to see a directory hierarchy. Seeing the list of most recently used folders is nice, but heirarchies are very useful)

      So you haven't thought to click on the little drop-down arrow to the right of the "Save As" box in any Save dialog box? That will bring up the file directory.

    10. Re:You should be optimisitic by FidelCatsro · · Score: 1

      Bingo bango bongo the nail is hit on the head .If everyone took time out to read the manual for things they are using i assure you that 90% of regular computer problems would vanish overnight.Another 5% would vanish if people trained themselves in the use of a unix type OS (The remainder being mainly misc bugs ,hardware problems and the like)

      two reasons this does not occur as far as i see it .

      1:) people are lazy and expect things just to work or do not have the time and can't see the long term benifits of this

      2:) support is big bussiness , for many people in the IT industry .Training people how to properly use a PC means a potential loss of profits/jobs.

      So untill we find some middle ground we are stuck with all the problems that under-trained computer users cause .

      --
      The only things certain in war are Propaganda and Death. You can never be sure which is which though
    11. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      Windows Services for Unix 3.5, free download for Windows 2000 and Windows XP. It includes a POSIX subsystem which operates independently of the Win32 subsystem. It comes with ksh and csh, but you can easily compile bash on it. It comes with over 300 utilities and supports over 1900 POSIX API.

    12. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      > All fluff and very little facts because the three operating systems are TOO similar. Compare it to cars. These days all of the cars are good enough! They will last four years without too many problems.

      True, but Volvo's and Saabs will last 15 years without too many problems. Same with OS'es I guess.

    13. Re:You should be optimisitic by killjoe · · Score: 1

      Scripting works in unix because every part of unix designed to be scripted. Same can't be said for windows.

      --
      evil is as evil does
    14. Re:You should be optimisitic by Ambassador+Kosh · · Score: 1

      Under KDE for at least 4 years or more you can control the gui from just about anything using dcop. There are bindings for perl, python, ruby, c++, shell etc. Since I have chosen to have a nice and consistent desktop that is no problem at all.

      My problem with windows is that I do server apps. I have NEVER seen ANY version of windows remain stable. I have even had boxes set up and paid for by MS and even under light db load they would not stay up for more then a few days and maybe up to a few weeks.

      This was under windows 2000 server and the thing was just never reliable. I use unixes because I can get the job done and they work.

      --
      Computer modeling for biotech drug manufacturing is HARD! :)
    15. Re:You should be optimisitic by Perky_Goth · · Score: 1

      4 years? that's a very very crappy car.
      15 years is acceptable, though not great. 4 years is crap.

    16. Re:You should be optimisitic by Blakey+Rat · · Score: 1

      Again for a renowned user-friendly GUI app, it is suprisingly difficult to do some graphical copy, cut, and paste operations. There is a lack of consistent keyboard/mouse functionality across all apps and functions.

      Can you be more specific on this one? Which applications are you using, and which "copy, cut, and paste operations" are you referring to?

    17. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      My conclusion is that you just don't know Windows.

      And my conclusion is that you just don't know Unix.

      The universe is in a wonderful state of balance. :)

    18. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      Then you either cheaped out on hardware or don't have the first clue about admining Windows. Out of the dozens of Windows servers and thousands of Windows workstations I adminster, I've never seen a software related failure. I had one server go down due to a faulty CPU, and several workstations go down due to faulty hard drives.

      The reliability of windows is exponetially proportional to the competence of the administration on that platform. I wouldn't expect a UNIX admin to be able to jump into admining Windows anymore than I'd expect vice versa. Most of the theory remains the same, but the implementation is different.

      I use Windows because I can get the job done and they work. But I know what I'm doing with Windows.

    19. Re:You should be optimisitic by Taladar · · Score: 1

      Actually for most of us it is just games because one game can not be substituted for a similar game (which works quite well for apps).

    20. Re:You should be optimisitic by Henk+Poley · · Score: 2, Insightful

      For example, how many of your regular tasks have you offloaded onto the Windows Scripting host? Unix users all have their favourite scripting language, and Apple users are always blathering about how wonderful AppleScript is, but Windows has just the same functionality,..

      You know, maybe that's the case because Microsoft doesn't really push WSH? I mean, on my Linux systems Perl, Python and Bash scripts are everywhere, on my Windows systems I haven't seen a single usefull script. When you go exploring a UNIX system you will quickly find them.

      If you browse Linux and Mac sites you will hit scripting guides eventually, probably within minutes if you are in the need for something that can be automated. For Windows I never hit such things, well.. sometimes on some MVP site (kudos to them!).

      On Mac and Linux systems the script language documentation is installed together with the interpreter/JIT-compiler, so it's available at any time. On windows, I need to navigate through the webbased MSDN Knowledge Base, which is quite challenging most of the time due to the (per page changing) non standard website conform way of displaying info; Or the docs are just being written in a way that's it incomprehensible if you don't know the onderlying Windows API (and no links to API walkthoughs).

      Just my 0.02 EUR.

    21. Re:You should be optimisitic by Taladar · · Score: 1

      WSH sucks because you have to learn a whole new interface (the scripting interface) to your normal apps. With Linux/Unix you use the same interface when scripting that is used when using the commandline apps directly.

    22. Re:You should be optimisitic by ClosedSource · · Score: 1

      When an OS like Unix is command-line oriented, it's only natural that scripting is very common due to the error-prone nature of typing long commands. Also there's a deep cultural preference to use the command line even if GUIs are available.

      This not true of Windows where the cultural preference is to use a GUI. So most Windows users don't really care much about scripting. There's little point in pushing a technique that will only make the story more complicated for most users.

    23. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      In Windows the standard operating interface is the GUI. So I guess MS could overcome your objection by using point-and-click based scripting.

    24. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      Did you miss the part where he said he even had boxes paid for and setup by MICROSOFT that failed?

      So you are saying Microsoft has "no clue about admining(sic) Windows." ?

    25. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      If that is what you think then you have little clue about the purpose of scripting. Scripting is about _automating_ tasks. You know, efficiancy?

      Why push a friggin' mouse around if I can whip up a quick script to accomplish the same task in a fraction of the time?

    26. Re:You should be optimisitic by Anonymous Coward · · Score: 0

      I think he's saying that he's a fucking liar.

    27. Re:You should be optimisitic by ClosedSource · · Score: 1

      Well, I wasn't saying that scripting isn't useful only that it is less intersting to most Windows users than it is to most Unix users.

      On the other hand, there's plenty of scripts that have been written that took more time to write than will ever be recovered in their lifetime of use.

      Sometimes scripting is a symptom of a programmer's desire to turn everything into a mini-programming project instead of getting on to his real work.

    28. Re:You should be optimisitic by Gr8Apes · · Score: 1

      > 3. there's an option in Keyboard & Mouse->Keyboard shortcuts to "turn on full access". tried that?

      Still doesn't work for listboxes (drop downs). Also, it doesn't allow you to jump with the keyboard across multiple radio buttons and change your radio button selection, at least not that I can see.

      > 4. tried clicking the down arrow to the right of the save name?

      I don't know why I keep forgetting this. Just say DOH!

      --
      The cesspool just got a check and balance.
    29. Re:You should be optimisitic by einhverfr · · Score: 1


      On the other hand, there's plenty of scripts that have been written that took more time to write than will ever be recovered in their lifetime of use.


      Examples please?

      My most complex admin scripts (500-line programs) have never failed to save time. Usually they break even within a *week.* If there is something that is simply designed to offer consistancy, that is different. Yet it still saves time because I can have people type simple commands (one word, for example "support") and not have to worry about permissions because I can use the setuid bit :-) These can then be changed as business needs change.

      --

      LedgerSMB: Open source Accounting/ERP
    30. Re:You should be optimisitic by Gr8Apes · · Score: 1

      You're right, I wasn't nearly concise enough. The entire movement, selection, and cut and paste with the keyboard is far too non-standard. A large part of that can be blamed on the vendors. MS Office (yeah, I know, but it's a required app for some things for me) uses different movement key combos from, say, Safari. Can they be changed? Probably, just haven't spent the time yet.

      There's also what I consider non-standard behavior within Firefox's text fields, where I'm typing this now. alt-left arrow jumps entire words to the left. alt-right arrow jumps across a word, then space, then word, then space. WTF? That's inconsistent even within the same app.

      --
      The cesspool just got a check and balance.
    31. Re:You should be optimisitic by Ambassador+Kosh · · Score: 1

      You can believe I am a liar if you want but the boxes where paid for and setup by microsoft as part of one of those rapid deployment w2k things. They where trying to get more people to use w2k and I was at a location where it gained them a fair bit of credibility to have it used. Even under light file serving load (about 200 mbs over a gige link the box just would not stay up.

      This was using the IIS ftp server. I have also done db development on some of the other boxes. Even with only a few gig db and a few gigs of ram on the box after about a day at most the box would end up dieing if it was under much load. From what I can see if you keep windows under fairly heavy load where cpu and memory usage are maxed for many hours at a time and you have swapping at all it doesn't take long to kill the os.

      --
      Computer modeling for biotech drug manufacturing is HARD! :)
    32. Re:You should be optimisitic by ClosedSource · · Score: 1

      "Examples please?"

      I might ask the same thing. Simply summarizing the usefulness of your own scripts is not much evidence.

      The point is not whether all your personal scripts save time but whether scripts written by people in general save time.

    33. Re:You should be optimisitic by einhverfr · · Score: 1

      "Examples please?"

      I might ask the same thing.


      Ok. Here is one. My first draft took me about three hours to put together, and maybe another three hours over the course of its life in terms of code rework and bug fixes. At the same time, it has saved me at least 6 hours per week in log file review. Sometimes I still need to review the log files (if it turns up false positives) but then it still saves time because I already know what I am looking for.

      Another common one is creating a script on remote servers which looks something like this:

      ssh gateway_act@metatrontech.com -R 2223:localhost:22 -R 8001:localhost:80 -i /root/.ssh/key
      and then making it setuid saves a bunch of time in allowing me to remotely access the servers when required without giving me an always on connection.

      Other examples include a 2-hour script which I put together to automate moving files around on my network (f. ex. offloading logs from the firewall).

      Indeed my firewall is so heavily automated that the only maintenance I do is in reading the two firewall reports it sends me every day.

      It is also not merely a question of time as a raw constant. I could just simply not maintain my firewalls at all (this would save time). But to do so would not be wise. So by writing scripts, I can accomplish a lot more with the same quantity of time and run a better network. Indeed I cannot think of any scripts written by reasonable admins which result in a net decrease in productivity.

      --

      LedgerSMB: Open source Accounting/ERP
    34. Re:You should be optimisitic by tokabola · · Score: 1

      Personnaly I find the Gimp to be better for me than Photoshop. Mind you, I'm doing web design and 3-d textures, if I was a photographer I'd most likely prefer PS.

      I am a musician, and one of the reasons I switched to Linux was because of greater flexibility in the audio area. Rosegarden, Audacity, Ardour, Timdity ++, Jack, and Stompboxes, along with a few other apps, have more than replaced Cubase for me, and work with significantly less latency.

      While Freecraft may have been "cease and desisted" by Blizzard, the source is still out there on various "cease and desisted software" sites.

      Tommy
      --
      Open Source for Open Minds
  57. Yep, just like strawberries by Anonymous Coward · · Score: 0

    will never knock banannas out of the produce market...

    and don't forget
    apple
    sun
    and allthose exotic fruits
    HPUX appears headed toward extinction though

  58. Why should it try? by thryllkill · · Score: 2, Funny

    I watched windows kill itself on my buddy's laptop twice tonight.

    --

    Note to self: No more arguing with the faithful.

  59. What? by fr0dicus · · Score: 1
    Linux not ready for the desktop? Someone should have told me, I've been using it for 7 years!

    Just kidding. Mac user since 10.2.

  60. The article author underestimates by syntap · · Score: 1

    the effect of Linux implementations in other countires' governments. As more foreign governments, and heck even US DOD offices switch to Linux not only for server stuff but for desktop use, you're going to see workdwide market share change.

    I personally doubt the market shares for the desktop will change much in the US. This isn't meant to be an advertizement, but when more distros like Ubuntu make nicely packaged live CD's freely available, Linux actually becomes easier for non-geeks to try because there's no getting lost in an installation.

  61. Predictions are always accurate by harris+s+newman · · Score: 0

    What a load of shit. Just more FUD. Forever is a very long time to forcast. I suspect the odds are less than 50% he is write.

  62. And most products are undone from *below* by Anonymous Coward · · Score: 0

    As in newer, lower-cost, cheaper, products.

    PCs killed mainframes. Cable and internet are killing network TV and newspapers. Cheap import cars badly dented Ford, GM, and Chrysler's market shares.

    You rarely see high-end (and high-margin!) products getting extended into lower-cost (and lower margin) markets. Yet the sellers of low-end products have a huge incentive to improve and get into the high-end and high-margin markets.

    And you'd better believe IBM knows this....

  63. I can't believe no one made this joke yet. by Knights+who+say+'INT · · Score: 2, Funny

    Step 1. Run Bochs or VMWare.

    Step 2. Install Windows on [Bochs|VMWare] environment.

    Step 3. Run it.

    Step 4. kill -9 `ps ax | grep [bochs|vmware]

    Step 5. Sing "tadaaaa".

    Step 6. Skip the question marks and profit.

    1. Re:I can't believe no one made this joke yet. by Anonymous Coward · · Score: 0

      Step 6. Skip the question marks and profit.

      Is "profit" a verb or a noun? Or, to put it another way, is that "Skip ... and profit", or "Skip the ... profit"?

      It makes a big difference...

    2. Re:I can't believe no one made this joke yet. by jcuervo · · Score: 1
      Step 6. Skip the question marks and profit.
      7) ...
      8) Rake in the bucks!

      --
      Assume I was drunk when I posted this.
  64. So what? by jgeduldig · · Score: 1

    Since when was Linux supposed to "kill" Windows?

  65. What point? by CarrionBird · · Score: 0, Troll

    How is Linux/BSD something entirely different from OSX? They are all *nix based (more or less) operating systems. The only difference is that OSX has a prettier interface and more boxed apps available. You could argue that it's a better whatever you want to call it, but to put them in entirely different categories is silly.

    --
    Free Mac Mini Yeah, it's
    1. Re:What point? by ColMustard · · Score: 1

      The average user doesn't care that Mac OS X is more similar to BSD and Linux at a technical level. All they see is that when you install Mac OS X, they get an interface they can actually use and tons of great free software they can get started with right away. In that respect, Mac OS X is more similar to Windows.

      --
      Moof.
    2. Re:What point? by iamacat · · Score: 1

      It's more of what they don't get - crashes, worms, thrashing when trying to multitask. BSD code was written to run on a multiuser server with hackers and LISP users and has been tuned and debugged by countless people since. Microsoft's stuff was written for word processing on a non-networked 286 and that kind of interfaces are still used by programmers instead of being hidden in an emulation layer. You will feel the difference allright.

    3. Re:What point? by XMyth · · Score: 1

      Seriously, how is this unlick Mandrake or Ubuntu?

      The problem isn't the usability of the interface (KDE is quite useable as are the graphical installers of the major distros).

      The problem is that users DON'T change their OS. If a major computer vendor offered computers with Linux preloaded then Linux could make some inroads on the desktop. Until then, it's not going to happen.

      I'm referring to the home desktop, not the corporate desktop.

    4. Re:What point? by Acer500 · · Score: 1

      I'm referring to the home desktop, not the corporate desktop.

      While the article refers to the Corporate desktop.

      [flamebait]Also, I do not agree with your claim of KDE being useable . I still find it wanting, and will not use it unless I don't have a choice[/flamebait].

      Just my personal opinion, nothing against KDE or Linux (seriously :-)

      --
      There are three kinds of lies: lies, damned lies, and statistics.
    5. Re:What point? by ColMustard · · Score: 1

      Well we'll never find out because no major computer manufacturer will take on Linux (except IBM, but they're supposedly getting rid of their hardware business). It's all because Microsoft owns them all. No, not literally, but they certainly can be paid off if any of them are getting any itches to offer Linux.

      --
      Moof.
    6. Re:What point? by XMyth · · Score: 1

      Well I was replying to the parent of my post who said "average user" which is not corporate desktop.

      As for the flaimbait comment, to each his own. Anecdotal evidence only, but I've gotten my fiance to use KDE and she is capable of getting more done there than in Windows (downloading digital camera pics, and actually navigate the file system (her home dir) using konqueror.

  66. Platforms by wootest · · Score: 1

    Windows is most certainly more successful as far as creating a *platform* goes. On a plain Linux distro install you can fiddle with far more stuff than you can on a plain Windows install. This is undoubtably good, if fiddling is what you want to do.

    But consider the average user, and consider a task as commonplace as installing a program. This can be a bit of a hurdle in Windows, but it's mostly clicking "Next", choosing paths and clicking "Finish" at the end (sometimes interrupted with entering a CD/serial key).

    If you were to perform a similar installation on Linux, on the other hand, you'll run into problems, because the architecture and even the culture is so flexible in a lot of ways that it has a whole another set of problems, or problems that exist in Windows but are much worse in Linux. Dependency resolution. Compiling. Configuration for these individual dependencies. Just recently, in the past few years, have *graphical* tools that make this easy come into being.

    Until each of these "this should be a platform; this should be easy" problems - of which installing programs is not the only one, but just a damn fine example - have been solved, Windows will remain better as a platform, even given the fact that Linux is arguably better at most things Windows does internally.

    1. Re:Platforms by mpe · · Score: 1

      But consider the average user, and consider a task as commonplace as installing a program. This can be a bit of a hurdle in Windows, but it's mostly clicking "Next", choosing paths and clicking "Finish" at the end (sometimes interrupted with entering a CD/serial key).

      In many situations installing software is something which the average user should not be doing in the first place.
      It can easily mean that instead of a tool to help someone do their job they have an expensive paperweight on their desk.
      This is something which greatly contributes to Windows TCO. So much so that there are 3rd party addons sold to make it more difficult for end users to mess around with Windows.
      In the worst case senario everyone loses their jobs due to using unlicenced software.

    2. Re:Platforms by wootest · · Score: 1

      That may be true, but that doesn't mean it should be increasingly hard because of poor, underdeveloped or nonexistent user interfaces but because of a good, enforced security model.

  67. I hate to be the guy who... by bman08 · · Score: 1

    Brings the mac into this, but come on. Every argument he makes against linux being a platform applies to BSD as well, yet there's OSX. Somebody could do the same thing on a linux kernel, no problem.

    1. Re:I hate to be the guy who... by fr0dicus · · Score: 1

      I disagree, not while the GPL sits in the wings, making the whole thing a legal nightmare for the corporate entity.

    2. Re:I hate to be the guy who... by Anonymous Coward · · Score: 0

      Heh, oh boy. It's pretty sad if the GPL is the reason why nobody has put a good desktop on Linux.

    3. Re:I hate to be the guy who... by NoMoreNicksLeft · · Score: 1

      I've worked at many corporations that use windows. They aren't ever tinkering with the OS, and are forced by license to send their changes back to Microsoft.

      They won't tinker with linux, and be forced to make the changes available to the world.

      But assume they do, for the moment. How exactly will a tobacco company be hurt, by sending in a firefox patch that fixes a bug? How will a telephone company be hurt if the send a patch back to Linus for a kernel issue?

      Most corporations don't sell software. This isn't an issue for them. Those that do, well... I doubt that helping with the maintenance of the kernel or a browser from time to time will impact their bottom line when trying to sell MovieMagic Gold Home Pro XP Edition Lite.

      All the GPL does, is insist you give fixes back to others so they can use them too, should you ever manage to figure out a fix. If you write your own software, license it any way you like.

    4. Re:I hate to be the guy who... by fr0dicus · · Score: 1

      I was talking about someone providing a whole GUI layer on top and attempting to sell it as a solution, as the grandparent referred to OS X as an example.

  68. It sounds to me like what he's really saying is by foxtrot · · Score: 5, Interesting

    He believes Linux isn't a "whole platform", and I can see where he gets that idea-- Linux isn't very unified (Do have KDE or Gnome? [0]) and anyone who hasn't dealt with a modern package manglement system has dealt with Dependency Hell.

    So let's imagine some company, we'll call them Red Hat, to pull a bogus name out of thin air, and let's say they were to take this Linux thing, and make a nice standardized platform out of it. People ship you an application, you take your server, we'll call it a "Red Hat Enterprise Server" or something like that, and you can simply load the app on it and run it. They wouldn't say their app runs on Linux. They'd say their app runs on Red Hat.

    To him, _that_ would be a platform, and that would have a chance at taking on Windows. It would be Linux behind the scenes, but it's more that just Linux.

    Too bad nobody's ever going to do something like that.

    -JDF

    [0] Thankfully, even if you generally only see one of these, you can still have the other behind the scenes and run stuff intended for either...

    1. Re:It sounds to me like what he's really saying is by Anonymous Coward · · Score: 0

      that smell, being the most memorable of the senses related to any significant event on ones life should be discounted somewhat in consideration of the sexual pleasures delivered by Venetian women, who, as we all know, are wont to bath in the canals.

  69. Re:OS X and Java by Nimloth · · Score: 0

    RTFA, the article clearly says to use OSX with Java... P4's are for losers.

  70. Easy way to gain mind/marketshare by travail_jgd · · Score: 1

    Linux is cheaper and more secure than Windows. If governments (at the national or local level) adopt Linux or other FOSS packages (OpenOffice.org, etc) any contractors may be dragged along. Firefox and Mozilla have gained popularity because they're not only more secure than the browser that comes pre-installed, but they have more features.

    Likewise, government regulations may make Linux installations preferable. To bring up a previous "Ask Slashdot", securely wiping a hard drive isn't as problematic when the filesystem has been encrypted as the OS level.

    The more MS tightens its licensing fist, the more people slip away. Just recently a friend of mine was disappointed that Windows XP on her new computer couldn't be copied to all of her family's PCs (the way Win98 and Win2K were). If not for having certain needs -- her kids being able to run games out of the box -- I may have had a convert.

    1. Re:Easy way to gain mind/marketshare by ColMustard · · Score: 1
      Linux is ... more secure than Windows.
      Oh yeah? All of the research studies I've read have determined that Windows is more secure. Thankfully Microsoft has been able to fund all of those studies so the world can know of Windows' superior security!
      --
      Moof.
    2. Re:Easy way to gain mind/marketshare by Punboy · · Score: 1

      Set up a dualboot for her. Or, set up linux on every machine except the ones that need games to run on it. Or, set up linux and get her VMWare.

      --
      If you like what I've said here, and want to read more, go to http://www.krillrblog.com
    3. Re:Easy way to gain mind/marketshare by travail_jgd · · Score: 1

      Unfortunately, that won't work; all of their computers do duty as game machines. And knowing my friends, the Linux install would never get used: they'd view rebooting as an inconvenience, despite having to do the same thing to their XBox to switch games...

  71. Will Hurd run Duke Nukem Forever? by Anonymous Coward · · Score: 0

    I'd really like to know that.

  72. Do you hab a colb? by Anonymous Coward · · Score: 0

    I ask becaube you keeb spebbing wibh "b" where the "t" shoulb be.

    1. Re:Do you hab a colb? by Anonymous Coward · · Score: 0

      I don't see how you're claiming typos; you've got to be pretty dedicated to aim for the "t" but hit "b" on almost any keyboard. Unless you're using a keyboard that really does have "b" and "t" close to each other, in which case fair enough (Type slower?)

  73. 1973 memo from one swiss watch maker to another by mr.smart · · Score: 1

    The digital watch is established and has a niche that, as various pendulums swing, will grow and shrink. Show me charts and stats and benchmarks that prove a quartz movement is superior to a mechanical timepiece in every measure and I'll not argue with you. But no matter how much money and dedication is poured into digital watches , it will never put a dent in mechanical timepiece mind share or market share because digital watches are only watches , a way -- and probably the best way -- to tell time . But you can't turn a digital watch into a platform even if you brand it, box it, and put a pricey sticker on it.

    1. Re:1973 memo from one swiss watch maker to another by Anonymous Coward · · Score: 0

      yep
      a self winding mechanical with atomically illuminated dial will work and be readable long after the sun has burned out, as long as the wrist keeps moving.

  74. Paradox! by MoebiusPT · · Score: 1

    Of course Linux can't kill Windows.

    Windows will kill it self!!!

  75. Be specific... by www.sorehands.com · · Score: 1
    "Please be specific"

    George O'Malley.


    He is partially right, but it depends on your definition of mindshare or market share. If it is a mindshare of people who know nothing about computers, that is true. But at a company you put a Linux box with a configured desktop in front of a new hire (having the tools they need), they will use Linux to do there job. If go to a trade show with 100 Linux kiosks for internet access, it will be used.

    People still use OS/2, but they don't realize it. Many ATMs and cash registers run OS/2. Years ago I saw an agent computer terminal at Delta airlines, but the agent didn't know that they were running OS/2 -- they were just doing the job they were given.

  76. Indeed, linux can't kill windows.. by Mr2cents · · Score: 1

    To kill windows, a silver bullet is what you want.

    --
    "It's too bad that stupidity isn't painful." - Anton LaVey
  77. User interfaces are important, though by Christian+Engstrom · · Score: 4, Informative
    The article speaks a lot of rubbish, but it raises one valid point as well.

    To most end users, a consistent look and feel, that works right out of the box, is really important. So it's a very good thing that Linux distributions are improving in this area (which the article conveniently forgets to mention).

    For the same reason, I also think it's good to see Open Source applications adopting user interfaces that are more similar to their Windows counterparts. It may annoy some old-time Unix or Linux users to find "Options" under "Tools" rather than under "Edit" in the Firefox browser.

    But for Windows users that are looking for a safer alternative to their present browser, the chance that they'll make the switch increases with every item that works as expected when they first try it out.

    And it's only by convincing today's Windows users to switch, that Linux can avoid the fate that the article spells out.

    --
    Christian Engström, Former Member of the European Parliament 2009-2014 for The Pirate Party, Sweden
    1. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      I think you're right when it comes to desktops. But the article refers to servers and I think your points are largely irrelevant in that area. It holds some validity for small or medium sized businesses that hire point and click monkeys as administrators.

    2. Re:User interfaces are important, though by nathanh · · Score: 1, Insightful
      To most end users, a consistent look and feel, that works right out of the box, is really important. So it's a very good thing that Linux distributions are improving in this area (which the article conveniently forgets to mention).

      It wasn't important to Windows 3.1 users.

      Hell, it still isn't important to Windows XP users.

      If people cared about something that "works right out of the box" or a "consistent look and feel" then Windows wouldn't be a significant player at all.

      People care about *price* first and *effort* second. Some people will crawl through mud to save a nickel. We call those people "the majority".

      Any idiot who thinks Windows works "right out of the box" has obviously never tried to use Windows "right out of the box". It's a disaster of epic proportions. Drivers and viruses and stupid configuration dialogs you need a masters degree[1] to decipher. The unpaid labour that any tech geek bestows on his family and friends, supporting and fixing their effing bleeding blinding crappy Windows boxes, is the only reason that Windows is used at all by the general population.

      And consistency? What the hell is consistent about the Windows interface? WMP9 looks nothing like Notepad looks nothing like Office XP looks nothing like Symantec anything looks nothing like Adobe anything. They're all freaking different. Even worse are these new schizoid applications that think they're the offspring of Shockwave and an acid trip. They look nothing like ANY version of Windows that has ever existed.

      So don't give me that shit about "consistent look and feel" or "works right out of the box". I laugh at the mere suggestion.

      /grumble

      [1] in Dumbfuckingdialogology

    3. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      I'm a Linux user (Ok, mod me down now), and really, I think that if windows are bad, windows immitation is 100 worse. Windows-like GUIs that were made quickly in order to give the "Look and Feel" to the masses, are the worst thing that has happened to "linux".

    4. Re:User interfaces are important, though by jonadab · · Score: 1

      > To most end users, a consistent look and feel, that works right out of the
      > box, is really important.

      Yeah, but Win32 has never had this, because it allows application developers to make their own widgets out of whole cloth, resulting in fruitcakey nonsense UIs like AIM, Winamp, et cetera, ad infinitum, ad nauseam, ad bedlam. Yes, X11 allows this also; fortunately, *most* of the OSS community these days is beginning to see the folly of this approach and use one of the leading GUI widget sets, mainly GTK and/or Qt, which can be themed to look highly similar or at least coordinate nicely, and some of the major apps with their own toolkits (OOo, Mozilla, ...) are at _least_ starting to pick up basic color schemes from the system now, although really they ought to use the actual native widgets. But it only takes one $#@! Athena application, or something like xmms, to spoil the consistency.

      The thing is, it is utter hypocracy for Microsoft advocates to criticize "Linux" (by which they mean X11 or the distros) for this, because exactly the same thing is true, and to pretty much exactly the same extent, on Win32. Okay, so Win32 has one core widget set instead of two (GTK and Qt), but the end user does not need to know about the GTK/Qt distinction, if they are themed similarly.

      For Microsoft, there's an obvious solution to this: deprecate the parts of the API that allow custom widgets, and in five years remove support for them. ISVs won't like this one bit, and the question is, which is more important: retaining ISV mindshare, or giving users a consistent look in every app? I tend to think the ISV mindshare is more important, but Microsoft does have this option to consider. In the OSS community, of course, there's no such option, because of the nature of the freedoms developers inherently have -- although distributions could refuse to *bundle* non-compliant apps. (But, no sane distribution would refuse to bundle, say, Emacs, which last I checked is still built against Xaw3D or some such ugliness, presumably because for some strange reason pretty scrollbars and tear-off menus don't seem to be a major show-stopping priority for Emacs developers. XMMS is also pretty major, but I think that one is sufficiently modular that they could adjust its GUI to comply, rather than exclude it. Command-line programs, of course, are exempt from GUI-oriented visual consistency guidelines; nobody expects cd to use a GTK2 file selection dialog, for instance; that way lies madness.)

      --
      Cut that out, or I will ship you to Norilsk in a box.
    5. Re:User interfaces are important, though by Elminst · · Score: 4, Insightful

      Any idiot who thinks Windows works "right out of the box" has obviously never tried to use Windows "right out of the box".

      Here is where you miss the point of "out of the box".
      When your average idiot buys a computer from Dell, Gateway, HP, $RESELLER. He gets it home, opens the box, plugs it in, and lo and behold it WORKS. That is what the phrase means. All Joe Luser knows about Windows is that he buys a computer and turns it on and it WORKS.

      Currently, you cannot do this with Linux. Mainly because almost no one sells preconfigured Linux boxes that you can just plug in and work. Lindows barely scratches the surface.

      Installing Windows from scratch is a totally different story. It is, as you say, fraught with perils. But this is the same no matter what OS you try.

      Joe Luser doesn't care about installing windows or any other OS. He wants a computer that he plugs in and it WORKS. He gets this from all major distributors.

      Until a major reseller can offer a Linux PC that does the exact same thing CONSISTENTLY, Joe Luser will not use Linux.

      --
      No unauthorized use. Trespassers will be shot. Survivors will be shot again.
    6. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      To most end users, a consistent look and feel, that works right out of the box, is really important.

      Which is why everyone whines about how Windows Media Player looks totally different from Word and Visual Studio looks completely different again, and why no Apple user can bear to use iTunes or the new Finder because they use the brushed metal theme and look totally different from Aqua applications.

      Oh, wait.

    7. Re:User interfaces are important, though by hammeredpeon · · Score: 1, Offtopic

      I have a masters in Dumbfuckingdialogology and I still can't get windows to work right, you insensitive clod!

      --
      best college pickem site ever: pickem.terrbear.org
    8. Re:User interfaces are important, though by Anonymous Coward · · Score: 3, Informative

      You aren't too swift are you... almost every windows app has the same menubar, click/right click context menu interface. Everybody can figure out how to save a file or do simple tasks even if they've never seen the app before because they generally have the same basic UI.

    9. Re:User interfaces are important, though by TobascoKid · · Score: 1

      Here is where you miss the point of "out of the box".
      When your average idiot buys a computer from Dell, Gateway, HP, $RESELLER. He gets it home, opens the box, plugs it in, and lo and behold it WORKS. That is what the phrase means. All Joe Luser knows about Windows is that he buys a computer and turns it on and it WORKS.


      But not for long, at least going by how every windows user I know complains to me about either virii or spyware, often looking for some free help.

      Of course when they ask me what I use to combat such things I say "Linux" and all they do is go "oh".

      Tk

      --
      At some point, somewhere, the entire internet will be found to be illegal.
    10. Re:User interfaces are important, though by Decaff · · Score: 2, Informative

      You aren't too swift are you... almost every windows app has the same menubar, click/right click context menu interface.

      And that is not true for Linux/KDE or Linux/GNOME?

    11. Re:User interfaces are important, though by ChibiOne · · Score: 1, Interesting

      I think the concept of "working right out of the box", applied to GUIs, means you don't have to worry about the GUI crashing for no apparent reason. Now, I know this happens in Windows too. And granted, on Linux you can kill Gnome/KDE/whatever without actually having to kill the whole OS (like Windows), but you can' deny that, although there's been some improvements on that front, the window managers used in Linux distribution stil don't "feel" as "stable" or "consistent" as Windows'.

    12. Re:User interfaces are important, though by n0d3 · · Score: 2, Insightful

      I belive the main two reason people use Windows are:

      1) It came that way.

      People buy or order a PC and what do they get, a PC with Windows Pre-installed. They don't know how to install anything else, they don't want to know how to install anything else. And I don't blame them. The majority of people shouldn't need to worry about that. That's what we have resellers for. They should offer PC's that are ready to be used out of the box.

      2) Availability of Software.

      Linux is a great OS. Software for this OS is somewhat laking behind.
      In coorperate enviroments, people need(ed!) Word. Thus they need windows. Also a lot of intranet pages need IE and thus again Windows is needed. Or what about Photoshop and etc etc.
      Then the homeuser needs/wants to be able to just click and run (pun intended) whatever they get their hands on. With or without spyware. (Actually, they wouln't need anything if the reseller has 'almost' everything they could ever need on there)

      I read an article once, about Linux working for MS wasn't such a bad idea at all. Linux as the OS. Windows as the 'majorities' desktop. Kinda almost like what Apple is doing in a way. Apple's are great for the majority of people out there, that just want to 'use' their Computer.

      Other then that the articel also attacks linux in general unrightfully. They claim that linux isn't ready for the desktop, that you don't have all the api's you might expect etc etc. This has nothing to do with linux. But with the distro's. They package the OS with Applications and create the whole enviroment. And I'm not saying they are doing a bad job at all. Comparing apples with apples. Not OS with the 'Windows enviroment'.

    13. Re:User interfaces are important, though by Burz · · Score: 1

      At any given time, the default UI for current version of Windows is 90% the same between machines.

      If "Desktop Linux" can achieve 75% with the UI between distros (and 100% with a set of defined core APIs and components) then it will be a winner.

    14. Re:User interfaces are important, though by NewStarRising · · Score: 1

      It seems as though you don't come into contact with Users much.
      " ...Everybody can figure out how to save a file or do simple tasks even if they've never seen the app before because they generally have the same basic UI. ..."

      Not true. partly, they do NOT have the same basic interface (Windows Media Player, NeroStartSmart, Ad-Aware, and more). And people are NOT confident enough to even look for the same settings in different programs. They can master Word, but put them in front of FrontPage and they run for the hills.

      --
      b3 4phr41d 0f my 4bov3-4v3r4g3 c0mpu73r kn0wI3dg3!
      MadDwarf
    15. Re:User interfaces are important, though by suitepotato · · Score: 1

      I'm not sure we're talking about the same thing here. Windows doesn't work right out of the box? Since when? The fact is that if you can and do read the documentation which is in fact quite voluminous unlike the *nix world, it does very much so work right out of the box

      I RTFM with *nix all the time, and the best docs found on a distro still are contradicted by the code itself, forcing me to creatively interpret what the coder, brilliant as he or she may be, incompetently thought up for documentation. I should not have to interpret documentation. It should work exactly as written and either the code changed to reflect the docs which is the *nix way, or the docs written to conform to the code as written which is the Windows way and come to think of it, the way of auto manufacturers, electronics builders, and just about everyone else living in the sane logical world.

      Seventeen tries to get Captive NTFS working just once is insane. And when I ask why it isn't, the most helpful answer I get should not be that I am too stupid to understand what the doc writer was implying.

      With no prior experience in doing so at the first job I had to deal with it, I managed to network DOS/Win3.11 and OS/2 2.1 machines with Token Ring and Ethernet simultaenously in less than four hours of work. All because the docs were well written, the code did exactly what the docs said, and I did what the code expected of me.

      Linux is easy enough if someone wraps a lot of stuff around it and includes eye candy to distract from the harder stuff, but when experienced techs need to spend more time reading more docs and still asking questions of others and still researching Usenet and web forums for answers, it's not remotely a contender for a system that does more often than not work right out of the box.

      Sometimes I think way too many people are still having flashbacks to the upgrade from Win3.11 to Win95 but that was ten years ago. Can we fast forward to now and see the current reality is that XP works very nice, its other more technical and ethical problems notwithstanding? No one is saying it is secure, merely that it is still far and away easier to use and install, and much more so for the average newbie than anything else.

      Finally, for those who are thinking corporate support means anything with regard to ease of use, you need only look at IBM and OS/2 Warp 3. Money is not the reason. Acceptance of the logic that the vast majority of the public lives by and not the tortured illogic we techies sometimes live be is what will lead to products that people want. Apple illustrates this quite well and though I hate Jobs with a titanic passion, I must admit they've finally started to wake up over there. Now, will the *nix community?

      --
      If my grammar and spelling are off, I am [distracted/tired/careless] (take your pick)
    16. Re:User interfaces are important, though by jwd-oh · · Score: 1

      You can by a pre-configured Linux that works right out of the box from Wal-Mart! Both Desktop and Laptop.

      You need to check your facts.

      BTW, you can order nearly every Dell box with linux pre-installed, too. Many HP boxes can come that way, too.

    17. Re:User interfaces are important, though by Viol8 · · Score: 1

      "Seventeen tries to get Captive NTFS working just once is insane. And when I ask why it isn't, the most helpful answer I get should not be that I am too stupid to understand what the doc writer was implying"

      Could be worse, at least you weren't given some petulant message along the lines of "well no ones stopping you going and writing your own driver!" that I've had when pointing out that perhaps something didn't work in a 100% logical fashion. The people who write open source and smart and do put in a lot of effort for not much return , but being stroppy and juvenile about valid issues doesn't help their cause one bit.

    18. Re:User interfaces are important, though by nyssa · · Score: 1

      This is a very good point. I'm working right now with a seasoned, technically savy C++ developer who has worked in the Microsoft Windows world for the last 10 years, but now is forced to do some work on Linux. He says he feels like he is taking a step backwards because of the increased use of the command-line and the inconsistent look and feel of GUI applications.

      I've been using Ubuntu for the last 6 months and I think they're moving in the right direction here by focusing on a clean, GUI based desktop user experience. I predict that in a couple of years, Ubuntu will categorically prove Tom Yager wrong.

    19. Re:User interfaces are important, though by i_should_be_working · · Score: 1

      So when Joe Luser gets home with his computer and plugs it in he's ready to:
      Open Excel and do some work?
      Watch some DVD's?
      Browse the internet risk free?

      No, he can't do any of those things "out of the box".

      The number of computers being sold with Linux may be small now, but the ones that do come with everything Joe Luser needs, and when he sees that one computer (Windows) comes with nothing but the operating system, a mediaplayer and notepad he's going to opt for the full featured one.

    20. Re:User interfaces are important, though by skaeight · · Score: 1

      This is BS. Pretty much any computer you buy will come with all of the software you need to do all of the things you listed.

      MS Office is included with most computers and if the computer has a DVD drive it most certainly comes with a dvd application.

      The only thing that might not be there by default is browsing the internet risk free.

    21. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      huh? Yes he can open Excel and do work. The computer will usually come with Microsoft Works preinstalled. And yes he can watch DVDs, DELL usually preinstalls WinDVD on the computer.. as for browse the internet risk free... well yeah.. you got me there.

    22. Re:User interfaces are important, though by swv3752 · · Score: 1

      Wrong again grasshopper.

      It started with walmart but there are several places online that offer preinstall Linux computers, usually Lindows. Besides you can get it preinstalled from some majore OEM's.

      --
      Just a Tuna in the Sea of Life
    23. Re:User interfaces are important, though by kyojin+the+clown · · Score: 1
      People care about *price* first and *effort* second

      Surely, then, People would be downloading Linux which is *free*.

    24. Re:User interfaces are important, though by Chris+Mattern · · Score: 5, Insightful

      > So when Joe Luser gets home with his computer and plugs it in he's ready to:
      > Open Excel and do some work?

      I have a cheapo e-machine I bought to run Windows games on (at which it has done surprisingly well, I might add). It came with Windows Works, which is not unusual. Joe Luser gets home, plugs it in, and he's got a spreadsheet. Not a terribly good one, but Joe doesn't know the difference.

      > Watch some DVD's?

      It also came with PowerDVD 5, which is even more common than getting Works. Actually, it plays DVDs better than any of my Linux boxes, and did so right out of the box.

      > Browse the internet risk free?

      No, but Joe doesn't know this and can't see it. He double clicks on Internet Explorer, and it's teh Intarweb! Works right out of the box!

      > No, he can't do any of those things "out of the box".

      Actually, yes, as far as Joe can see, he *can* do all those things right out of the box He doesn't see how poorly or brokenly they may be done. All he sees is that he can't buy a Linux box that he can just plug in and have do these things with no requirement that he do things he doesn't understand.

      Chris Mattern

    25. Re:User interfaces are important, though by ifwm · · Score: 1

      Any idiot who thinks Windows works "right out of the box" has obviously never tried to use Windows "right out of the box"

      I just installed a fresh copy of WinXP on my laptop. Everything works.

      And strangely, I don't FEEL like an idiot, but perhaps that because I haven't said or done anything idiotic. Like claiming something is true, and that other people are idiots for disagreeing, when what I say is clearly not true, and other people aren't idiots.

      Parent was flamebait mods, which is why you jackasses modded it insightful.

    26. Re:User interfaces are important, though by jwd-oh · · Score: 1

      I call BS.

      You can buy Boxes from Wal-Mart with Linux pre-configured to do all of this.

      Both Laptop and Desktop

    27. Re:User interfaces are important, though by deuist · · Score: 1

      While you're right that an installation of Windows from a CD will not work right out of the box, the vast majority of Windows users buy computers from manufactures such as Dell and Gateway where the PC's do indeed run with everything readt and installed.

    28. Re:User interfaces are important, though by Anonymous Coward · · Score: 1

      Have you even used Windows once in the past 15 years? From your submission you obviously haven't, or you're just way too fucking clueless to turn on the "cluelessness." Windows is way fucking simple. Anyone can, and does, sit down and find Solitaire immediately. Bam!, hooked.

      And even if the apps sometimes look different, which is the exception, not the rule, they still behavior the same ways. There isn't three stupid fucking competing implementations of a clipboard. Shit, even when Microsoft added the multiple clipboard, which stores up to 24 items at once, in Office, it still worked just as everyone fucking expected. Even in the case of Windows Media Player, where the UI is drastically different from Logo requirements, at least it's fucking intuitive to use.

      Linux on the desktop? Absolute fucking nightmare. Pick your distro and hope that someone is actually attempting to maintain software for it. Incompatibilities between different current distros of Linux are even worse than those between two competing commercial UNIX offerings written 20 years apart from each other.

      You stupid silly fuckers don't understand how to do things consistently at ANY fucking level. An application written for DOS 1.0 will RUN on Windows 2003 SP1, with no noticable differences. You can't guarantee me that an app written on a current Debian will even run on Fedora.

      Choice is not inherently good. Choice complicates. Choice makes for an unpredictable environment. Why Windows will always succeed over Linux is the same reason why console gaming will always be significantly more prolific over PC gaming; a consistant platform; a static target. Learn it, fuckos, or resign yourselves to your niche irrelevance.

    29. Re:User interfaces are important, though by Jason+Earl · · Score: 1

      Yes, and the end user is paying for that. Or more precisely, the OEM is giving up the majority of its profits to software makers so that the computer can come pre-installed with enough software to make it usable. The funny thing about this is that a properly configured Linux computer would not only cost the OEM considerably less, but it would probably be more functional as well. This is why the extreme low end of the computer market is pretty much dominated by Linux boxes.

      The funny thing about markets is that most of the growth generally occurs on the low end. "Good enough" at a lower price invariably trumps "better" but more expensive in the long run. Especially considering the fact that Linux's quality is rising at a fairly dramatic pace.

    30. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      Wasn't that only Wal-Mart's online store?

      I don't think they have any shelf space.

    31. Re:User interfaces are important, though by kaustik · · Score: 2, Funny

      Well, from the looks of your website, perhaps you should have ran for the hills as well.

    32. Re:User interfaces are important, though by Spy+der+Mann · · Score: 1

      In coorperate enviroments, people need(ed!) Word. Thus they need windows. Also a lot of intranet pages need IE and thus again Windows is needed. Or what about Photoshop and etc etc.

      Give me Linux clones of the top-50 software list in windows, and I shall move the world.

    33. Re:User interfaces are important, though by ninewands · · Score: 1
      quoth the poster:
      Here is where you miss the point of "out of the box".
      When your average idiot buys a computer from Dell, Gateway, HP, $RESELLER. He gets it home, opens the box, plugs it in, and lo and behold it WORKS. That is what the phrase means. All Joe Luser knows about Windows is that he buys a computer and turns it on and it WORKS.

      Currently, you cannot do this with Linux. Mainly because almost no one sells preconfigured Linux boxes that you can just plug in and work. Lindows barely scratches the surface.

      I beg to differ. I bought my wife a "house-brand" Athlon box from Fry's for $199.99. It had Lindows Linspire 4.5 preinstalled on it. I plugged it up, ran a long-ass CAT-5 cable from my office to hers, turned it on and it booted right into the KDE desktop and grabbed an IP from my router's DHCP server with no problems.

      "Straight out of the box" that's about the best You can hope for with Windows unless you are buying a box with half of BestBuy's software department bundled as demos versions by the manufacturer.

      I must admit that I thought Lindows's $4.95 a month for "Click-and-Run" was kinda lame, so I pointed the apt configuration at the canonical Debian sources ... which promptly trashed the Lindows installation.

      I told my wife, "I'll either run the 'restore' disk or install Fedora, your call." She asked what the difference was and I explained "You can have Lindows with click-and-run for $60/year or you can have everything you would get from click-and-run free with Fedora." She chose Fedora and has never looked back. I have installed exactly ONE program that is not distributed by the Fedora project on her machine, although I'm thinking about adding gxine have a better media player than the crippled version of xmms included with the distro.

      I've even noticed her beginning to make catty remarks about "being forced" to use Windows at work ... my GOD, I've created a Penguinista!
    34. Re:User interfaces are important, though by jwd-oh · · Score: 1

      And this matters how?

      I said you can buy it from Wal-Mart which absolutlely true. I did not say you can walk into your local Wal-Mart store and pick one up. Although, they are available in the Wal-Mart superstore that is near where I live.

    35. Re:User interfaces are important, though by i_r_sensitive · · Score: 1

      To most end users, a consistent look and feel, that works right out of the box, is really important.

      Ahh, thank you, I've been looking for the rationale behind Stardock's continuing existence, and why there are almost as many lite step variants as there are linux distributions. It also explains why M$ offered up the plus pack, and the power toys collections. It also explains the plethora of developers and themers whose only raison d'etre is to radically alter said look and feel...


      User interfaces +*ARE*+ important, but not the consistency of their look and feel.


      The bigger obstacle are things like dependency resolution, and the sypmtoms of the practically non-existent efforts of folk who participate in the FOSS effort to bridge the gap between those who make the software, and those who use it.


      At the end of the day, Joe Six-pack doesn't care if FOSSprogX is better than CSProgY because it is free as in speech. It can be free as in beer, and if he can't use it, because the documentation is abyssimal, or he can't install it because he can't resolve the dependencies, then the lower cost, or greater freedom, is moot.


      So Joe Six-pack trundles down to CompUSA and buys CSProgY. Great! So now Joe's money goes to support Closed Source Development, which you avow to despise, and the profits from that can be spent on FUD to further minimalize the FOSS movement. Thanunk-you very much.


      Now, if Joe got a FOSSprogZ, whose development group paid attention to things like providing *USEFUL* end user documentation, and providing an install script which did it's level best to try and resolve dependency issues, perhaps we can keep Joe, and deny his money to the forces of evil who seek to destroy all that is good in software development.


      All the rest is tripe. Look and feel might have mattered before, but to worry about it now, is a waste of dev time. Look and feel is now at the point where we can talk about Windows and any of the major *nix DEs as the difference between right and left hand drive in a car. Yeah, you have to adjust, but that's all it is, an adjustment.


      Unfortunately, right now, the major difference is the Closed source crowd *sells* them an assembled car, in right or left hand drive. FOSS *gives* them a partially assembled car, no instructions on how to finish assembly, nor the tools needed to complete assembly, and rationalize that we've given them a better alternative than buying a car.


      Oh but wait, did I forget the Fakie-FOSS folks in the wings who will sell you services to assemble and help maintain your FOSS car, at a cost comparable to the CS car?


      And folk even question that Linux will eventually kill Windows... Isn't it manifest that we're the superior model? After all, we guard the fundamental interests of our users... Just not their needs.

      --
      "Talk minus action equals nothing" - Joey Shithead, D.O.A.
      "Talk minus action equals /." -
    36. Re:User interfaces are important, though by MoneyT · · Score: 1

      And this matters how?

      Because joe user wants to carry his computer home. Why do you think stores selling computers do so well? Instant gratification.

      --
      T Money
      World Domination with a plastic spoon since 1984
    37. Re:User interfaces are important, though by killjoe · · Score: 1

      "Here is where you miss the point of "out of the box".
      When your average idiot buys a computer from Dell, Gateway, HP, $RESELLER. He gets it home, opens the box, plugs it in, and lo and behold it WORKS. That is what the phrase means."

      If that was true then Apple would have a monopoly. For decades apple made machines that worked right out of the box while MS made operating systems that crashed and needed lots of tweaking. Remember the DOS days when you had to tweak your config.sys and autoexec to make a game run? Remember trying to make modems work without conflicting with other IRQs? During all that time the Macs "just worked", modems plugged in and worked, games installed and ran.

      And yet people continued to use windows. Why? first of all it was cheaper, secondly businesses used it, and finally PEOPLE LIKED TWEAKING, it make them like they were in control of their machine.

      Linux will win for the same reasons. It's cheaper, businesses are starting to adopt it and it's tweakable.

      History shows that open systems do better then closed ones.

      --
      evil is as evil does
    38. Re:User interfaces are important, though by MoneyT · · Score: 1

      must admit that I thought Lindows's $4.95 a month for "Click-and-Run" was kinda lame, so I pointed the apt configuration at the canonical Debian sources ... which promptly trashed the Lindows installation.

      I told my wife, "I'll either run the 'restore' disk or install Fedora, your call." She asked what the difference was and I explained "You can have Lindows with click-and-run for $60/year or you can have everything you would get from click-and-run free with Fedora." She chose Fedora and has never looked back. I have installed exactly ONE program that is not distributed by the Fedora project on her machine, although I'm thinking about adding gxine have a better media player than the crippled version of xmms included with the distro.


      So it's out of the box if you want to pay a fee. That's not going to help any.

      --
      T Money
      World Domination with a plastic spoon since 1984
    39. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      consistant look and feel out of the box? so why are they using windows?

    40. Re:User interfaces are important, though by iCEBaLM · · Score: 1

      I don't think it's so much as reasons 2 and 3 as it is reason 1. Never underestimate the power of cheaper. The mac mini is going to get a lot of people over to macs, especially when tiger comes out.

    41. Re:User interfaces are important, though by jwd-oh · · Score: 1

      Again, I call BS

      Most people by home PCs from Dell via the online store or via the 800 number. Dell is the number retailer of computer systesm in North America.

      Check your facts.

    42. Re:User interfaces are important, though by Anonymous Coward · · Score: 0
      Your post is a prime example why Linux will never win the mainstream users.

      Congratulations on making the point so succinctly clear.

    43. Re:User interfaces are important, though by MoneyT · · Score: 1

      Dell also has a metric shit ton of kiosks all over the place. Physical presense. You may not be able to take the computer home directly from there, but it fills in part of the feeling of shopping for and buying something.

      Basically what you have is a society where buying stuff online is still not a major part of most people's purchasing habits. We go to stroes to buy stuff. That's what Dell realized and why they put kiosks out, because people go out to buy things mostly. Years from now that will obviously change as e commerce becomes something people are more comfortable with, but as it stands, people will go out to the store to buy their stuff.

      --
      T Money
      World Domination with a plastic spoon since 1984
    44. Re:User interfaces are important, though by jc42 · · Score: 1

      When your average idiot buys a computer from Dell, Gateway, HP, $RESELLER. He gets it home, opens the box, plugs it in, and lo and behold it WORKS.

      Huh? What planet are you living on? I've watched a number of people trying to deal with their brand-new Windows box, and "WORKS" isn't a word that they or I would ever use. I've listened to them cussing out the idiots who built the box, and tried to help them figure out how to get it into a usable state. They usually give me an earful of how incredibly bad the thing is.

      No, at least on my planet, if they wanted a computer that they can buy retail and which "just works", they'd all be buying Macs. The fact that they aren't is proof that working out of the box (or ever) must be secondary to something else.

      My theory is that the "something else" is advertising. The fact is that, when dealing with technically ignorant customers, the sales go to the company with the biggest advertising budget. And if you have the biggest ad budget, it doesn't matter much whether your product works right. Most people can't judge that before the sale, and after the sale it's too late; they're stuck with it and just have to make the best of a bad deal.

      Also, one thing you can do with a huge ad budget is convince people that your computer is the only "real" computer; everyone has it (except for a few nerds and geeks); there's no point at even looking at any of those fake computers sold by other companies. Once you've convinced people of this, you can sell a really shoddy product, and people will just assume that that's how computers all work.

      So on which planet do you find a computer system called "Windows" that works out of the box? Any chance of exporting a few to Earth, so we human geeks can take a look at them?

      --
      Those who do study history are doomed to stand helplessly by while everyone else repeats it.
    45. Re:User interfaces are important, though by DavidTC · · Score: 1

      Photoship and IE both work under Wine.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    46. Re:User interfaces are important, though by Taladar · · Score: 1

      You might have a point about consistent (multiple things are usually less consistent than one thing) but my Linux Windowmanager is rock stable. I can even recover from app crashs 99% of the time. Most app crashs of DirectX or other fullscreen apps render Windows useless.

    47. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      And that is not true for Linux/KDE or Linux/GNOME?

      I think you mean KDE/Linux or GNOME/Linux. Like GNU/Linux (GNU on Linux... GNU tools on a Linux kernel).

      Just to make sure Stallman gets his due, use KDE/GNU/Linux - KDE on GNU/Linux, and GNOME/GNU/Linux - GNOME on GNU/linux.

    48. Re:User interfaces are important, though by spankey51 · · Score: 1

      Good call... Lets start a new open standard for streamlining Linux-based user interfaces. We'll call it: GNUI - GNU's Nice User Interface Who's with me?

      --
      -ubuntu others as you would have others ubuntu you.
    49. Re:User interfaces are important, though by Taladar · · Score: 1

      Sorry about your experiences with Captive NTFS. I believe they package is/was unmaintained for a long time and uses a framework (LUFS) abandonded by its writers which might be the reason for your problems with it. Last time I checked it also had memory leaks.

      I can't however agree with you on the "documentation disagrees with code" and the "nice with eyecandy on top of it, not so nice below" issues. I use exclusively config files (directly) to configure my apps and the system and those are mostly well documented and the documentation is accurate. They are also quite easy to use because of their linear nature. Most problems I had with Linux were in fact with the configuration frontends most newbie distros tend to use. That might be related to them following the development of the program they should configure which means they have to re-act when implementing new features. That is always more difficult than acting, what the original programmers do. Documentation lacking accuracy might suffer from the same problem. If you take e.g. Suse-Documentation it is at least 1 step more than necessary from the original programmer. That will multiply errors and delay documentation of the newer versions. Chances are good the documentation writer is not using the program him/herself. If someone then translates/localizes this documentation you are even further away from the authorative source.

    50. Re:User interfaces are important, though by Taladar · · Score: 1

      Contrary to most other programs emacs has good reason to look/feel different. Instead of following the current trend emacs basically feels the same for the last 2-3 decades and across all platforms. If they would follow the current trend on every platfrom you would have not one but lots of editors and userbases. The userbase would also be much smaller since people don't want their editor to change every few years just to follow a (in terms of emacs lifetime) relatively short fashion.

    51. Re:User interfaces are important, though by electroniceric · · Score: 3, Interesting

      You, and the article make a bunch of good points, but you miss one key one that will keep things in play: cost.

      The article, although apparently from the POV of the purchaser (business, in this case), it actually speaks from the point of view of the software industry. End purchasers care about continuity, proper performance, and price, in roughly that order. All the article's arguments are valid when the end user interacts directly with the software producer. If they have to screw around with Linux kernel changes themselves, yes they get pissed. But when there's an intermediary (packager, vendor, consultant, etc.) who can provide continuity and performance, there's a nice opportunity to capitalize on the massive bag of Legos which those intermediaries obtain for $100 to several thousand less per copy than Microsoftware. If the intermediary/alternate vendor can figure out a way to split that $100 + between themselves and the consumer, there's an incentive for the consumer to _consider_ change. That's precisely the niche that IBM's in. I wouldn't be surprised to see IBM start opening up more of their core products, if and when:
      a) transition that revenue to services (services is always the top of the stack)
      b) address the platform/continuity issues the article brings up
      c) doing so would represent a kick in the teeth to a competitor

      This is not to be a OSS triumphalist, but I think there's a decent enough balance in there that it might be just a wee bit early to call the OS market sewn up by Microsoft.

    52. Re:User interfaces are important, though by jinzumkei · · Score: 1

      "Drivers and viruses [edit virii, btw i have a master's degree is plural forms of words] and stupid configuration dialogs you need a masters degree[1] to decipher." Have you ever even installed WinXP? Maybe installing an OS is a little too advanced for you if you crack at such world-shattering questions as "What time zone are you in?" As for "Works right out of the box". I was able to fire this machine up AND reply to your message in IE of all things and I don't have a master's degree in 'puters.

    53. Re:User interfaces are important, though by AaronGTurner · · Score: 1

      Walmart is the biggest retailer in the world. Walmart sells preconfigured Linux boxes. Ok, Walmart is perhaps not the most prevalent PC reseller and probably does not sell that many Linux PCs, but it does suggest that there is movement in the market, at least.

    54. Re:User interfaces are important, though by mattyrobinson69 · · Score: 1

      I could build somebody a linux from scratch system that works out the box.

      Windows as it comes, shrinkwrapped, would be impossible to install for joe sixpack. nor would it do anything once its installed.

    55. Re:User interfaces are important, though by hachete · · Score: 1

      Most users aren't even looking for windows. They're looking for a PC. That's the important bit: they've heard of this thing called a PC and they need to get it. Another set might want Word "because that's what they use at work" but I figure they're rarer. The birds that gather at this watering hole are rarer still.

      The fucking OS comes a long way down the list.

      That's why MS spend so much time on strongarming OEMs. Once the OEM's get the idea that they can offer a choice of OS for the consumer, then the game will be over for MS. Once there's real choice out there, then OSs can compete on features. It might take a couple of years, but MS's main revenue stream will be gone. Until such time, all of these threads concerning people buying MS because of quality are bollocks.

      --
      Patriotism is a virtue of the vicious
    56. Re:User interfaces are important, though by axiom_of_choice · · Score: 1

      And it's only by convincing today's Windows users to switch, that Linux can avoid the fate that the article spells out. It's kind of interesting that you should make every windows user sound inept technically. It's kind of a sweeping generalization. I use Windows myself at home by choice and have tried Linux, and have no interest in changing. Why? Well obviously the classic response is that `it does everything I need' (runs firefox, TeX, CDex, for example)...but truly aside from making a philosophy statement (that I am supporting OpenSource by not supporting MS), there's no reason to switch. And I don't consider that statement very important at the moment. Generally a major factor in getting users to switch would be the quality of the next MS OS, and not the current quality of Linux, no matter how well it works.

    57. Re:User interfaces are important, though by Chris+Mattern · · Score: 1

      > Because joe user wants to carry his computer home. Why do you think stores selling computers do so
      > well? Instant gratification.

      In fact, I bought that e-machine at a store for that exact reason. I wanted to take it home and use that evening. What's wrong with a little instant gratification occasionally?

      Chris Mattern

    58. Re:User interfaces are important, though by Chris+Mattern · · Score: 1

      Oh, yes, I agree. I never said that Linux *can't* provide this experience, only that it *doesn't*... yet.

      Chris Mattern

    59. Re:User interfaces are important, though by n0d3 · · Score: 1

      Which can be great for coorperations who want to gradually move over. Say have photoshop while switching to the gimp. Have IE while switching to Mozilla. However it's not 'the easy' way, the 'works out of the box' way.

    60. Re:User interfaces are important, though by Math,+The+Ancient · · Score: 1

      yeah, with that Linspire crap.

      --
      If I really am talking out of my ass...explain it to me with respect so I'll at least pull my ears out to listen.
    61. Re:User interfaces are important, though by lakeland · · Score: 1

      And consistant look and feel is the hallmark of xandros. It is also supplied rather well by linspire. Hell, even RedHat^WFedora value consistancy over features to some extent.

      Other distros, such as ubuntu, believe it is more important to provide users with the options. But the point is that if consistancy is your goal, then there are linux distributions available today which do a damn good job of satisfying it.

    62. Re:User interfaces are important, though by HAYVERN · · Score: 1

      This is the biggest problem with Linux. The applications that are being developed suck. I'm sorry, but you guys who are developing for Linux need to go and learn a little about quality assurance and documentation. Oh there are some very powerful applications out there and if you can figure out how they work, then you might get something done on them. The really annoying things are the small attention to detail items. Things like tabbing through text entry fields. For instance, you an interface that asks you to fill out five items. OK great, I start down the list, fill in the first, then hit tab, and... hey what the heck, I just jumped to number 5? OK enter number 5 and hit tab, what? It submitted the form FROM A TAB!?!?! YOu see what I am getting at? Spend some time and test your code. There are many things you can complain about MS about, but one thing for sure, the applications you get are well tested and work. THey also have the expected result, unless of course you download something open source (no one said Linux Open source developers have a corner on the quality deficiency department). Unfortunately, in Linux you don't have as much choice in the matter. Here is the crux of the problem though, as long as the requirement is that these applications are open source, then Linux will never grow as there is no market value to do it. All you can really sell is support at that point. Anything seem odd to you about that? "I'll give you the application for free, but charge you for supporting it, nevermind that I created it so convuluted and inadequate that only a Master's of Computer Science major can understand it"

    63. Re:User interfaces are important, though by westlake · · Score: 1
      You can by a pre-configured Linux that works right out of the box from Wal-Mart! Both Desktop and Laptop.

      Check your mailbox or your metro Sunday papers. Wal-Mart doesn't spend a dime marketing Linux at retail.

    64. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      Here is where you miss the point of "out of the box".
      When your average idiot buys a computer from Dell, Gateway, HP, $RESELLER. He gets it home, opens the box, plugs it in, and lo and behold it WORKS. That is what the phrase means. All Joe Luser knows about Windows is that he buys a computer and turns it on and it WORKS.


      My GF bought a Sony laptop last weekend. From that experience, I can assure you that what you wrote is pure fiction.

      We opened the box plugged it in and lo and behold it required three hours of configuration. If I had not been there, she probably would have never got it working. That was just to go from a preinstalled system to a minimally functional one. I figure that we are looking at several more days effort and quite a bit more money to get it fully functional.

      I agree that the user wants a system that works "out of the box". However, after 20 years in the industry, I am convinced that the only way that can be achieved is where the hardware and OS provider are one and the same and the OS used is rock solid. That implies either Apple or Linux. Even Dell, that has carried MS on their backs as far as they can, can only do so much within the constraints of their business model: for some inexplicable reason companies seem to be gravitating towards those inconsistent, unstable Linux systems for their mission critical servers. Everyone else is getting hammered: HPaq makes a whopping $15 on every PC they sell and IBM has given up entirely.

    65. Re:User interfaces are important, though by earlums25 · · Score: 1

      And that is not true for Linux/KDE or Linux/GNOME? and there is the problem. windows is windows, you mention two different desktops. i understand your POV, however, remember the average user - more than one choice/look/feel is confusing.

    66. Re:User interfaces are important, though by Mornelithe · · Score: 1

      Then they can simply use whichever desktop system their Linux PC comes set up with.

      Choice eliminated.

      --

      I've come for the woman, and your head.

    67. Re:User interfaces are important, though by jwd-oh · · Score: 1

      So, That was not my point. People said that you cannot get a pre-loaded Linux box. That is false. I gave the example of Wal-Mart and Dell and HP.

      I did not say anything about marketing.

    68. Re:User interfaces are important, though by jwd-oh · · Score: 1

      I your opinion Linspire is crap. For a computer newbie, like my dad, Linspire has all he wants and then some.

      That was not what I said. I was challenging the statement that you cannot get a box pre-loaded with Linux.

      I also mentioned both Dell and HP, too.

    69. Re:User interfaces are important, though by Skuld-Chan · · Score: 1

      And that is not true for Linux/KDE or Linux/GNOME?

      Its not actually. For example - if an application doesn't use the qtk, gtk, etc toolkit the look and feel will be different.

      I've had some applications in Linux that when you drag your mouse over text the text is copied. Some you have to use an option to copy the text (like the Mac and Windows are). Some linux applications you can do that and never paste.

      Most every form in most every windows app (from winamp to word) has a cut/copy/paste/undo - its the exact same context menu. Not true for every linux app - where some forms don't have context menus, some do. In fact most don't I've found - take xfig for example.

    70. Re:User interfaces are important, though by fr0dicus · · Score: 1
      This is why the extreme low end of the computer market is pretty much dominated by Linux boxes.
      Do you think that is good for Linux's image? As a cheap imitation?
      Especially considering the fact that Linux's quality is rising at a fairly dramatic pace.
      I see very little evidence to support your opinion here.
    71. Re:User interfaces are important, though by Jason+Earl · · Score: 1

      Cheap imitations have a long history of dominating the market. For example, even diehard PC enthusiasts would have admitted that Windows 3.1 was a "cheap imitation" of the Mac OS. The Mac was better in almost every way than early versions of Windows (not to mention DOS), but PCs won out over Macs because they were less expensive and "good enough."

      This dynamic can be seen in almost every industry. I remember when Japanese cars, for example, were "cheap imitations," and while most people don't equate Wal-Mart with quality products Wal-Mart somehow manages to sell an order of magnitude more stuff than any of its competitors. "Good enough" at a lower price is a tremendous market advantage.

      As for Linux's amazing increase in quality. To demonstrate that all you need to do is install an older distribution and compare it to what is available today. In the Linux world distributions that are only one year old are practically ancient, and the difference between the distributions available in 2001 and today is immense. Properly installed and configured Linux makes a very credible desktop, and it comes complete with a much wider range of software than any OEM bundles with their PCs.

      Quite frankly, anyone that hasn't observed the fact that Linux software evolves at an incredible pace simply isn't paying attention. There are lots of cases where proprietary software is still clearly better than Free Software, but in almost all of these cases the Free Software equivalent is clearly closing the gap. Not that it matters. You don't have to be as good as the competition to start stealing their marketshare. You merely have to be good enough at a lower price.

    72. Re:User interfaces are important, though by Decaff · · Score: 1

      Not true for every linux app - where some forms don't have context menus, some do. In fact most don't I've found - take xfig for example.

      I didn't say every Linux app: I was specifying either KDE or GNOME under linux. If you stick to apps that use those interfaces, you do get a consistent UI.

    73. Re:User interfaces are important, though by Decaff · · Score: 1

      and there is the problem. windows is windows, you mention two different desktops.

      You can pick one and install just that one.

      i understand your POV, however, remember the average user - more than one choice/look/feel is confusing.

      I think this is a myth! After all, there are a large variety of controls and styles presented to users from web browsers and multimedia players, and there are very few reports of problems with these.

    74. Re:User interfaces are important, though by tokabola · · Score: 1

      No, most computers do not come with Office. Many come with a trial version of Office. Go ahead and use it. After thirty days be prepared to pay Microsoft a few hundred dollars to ransom your saved files.

      Worse yet are the PCs that come with MS Works, as it's default filetypes for saving are exclusive - they won't open under any other app, even Office.

      Several of my relatives (Aunts, Uncles, Cousins) bought their PC's back when they actually did bundle full versions of Office. They continually send my mom their .doc files and absolutely insist that "all computers can open these". After all, theirs can and they didn't "pay extra" for software (or so they think, since it wasn't itemized.)

      I've found my mother frustrated to tears, literally, trying to open a heavily formatted Word document on her E-Mac. Her brothers insist she must be doing something wrong, or else she'd be able to open that file. In truth, Apple Writer can't open those picture-laden over-formatted messes they send her. Open Office manages, barely, and then I convert to PDF so she can view them again when she wants. [/rant]

      My point is, most computers sold today do NOT have a real version of Office. A few years ago, maybe, but not any more. A 30 day trial, maybe. BTW most likely the Norton/McAffee AV that "comes with" your new computer is just a 30 day trial also. What a bargain! $700 now to buy the PC, and next month I can shell out another $300 - $400 just to keep the functionality I had when I took it out of the box! [/sarcasm]

      Tommy
      --
      Open Source for Open Minds
    75. Re:User interfaces are important, though by tokabola · · Score: 1

      Excel is not a part of Works, it's part of Office, which is almost never bundled anymore (except for 30 day trial versions).

      There is spreadsheet software in Works, however the saved files can only be opened in Works. Since his work comp will have Office installed, not works, he won't be able to use the home PC to do homework because Office and Works won't open each others files. That way he gets to buy a copy of Office, to do stuff he already has the software to do, just to handle file compatibity. Brilliant!

      What marketing genius! Con him into paying extra for Works (even though it's not itemized so he thinks he's getting it free), then force him into paying for Office too!

      Tommy
      --
      Open Source for Open Minds
    76. Re:User interfaces are important, though by Anonymous Coward · · Score: 0

      Ah, but the first time Joe gets a *corrupt blah blah* message from Windows, "Please insert your original disk" instruction then tries in vain to find out what went wrong, he'll know all about that (seriously) out of the box feeling!
      Similar to the *out of the skull* feeling of talking to the IRS :)

  78. He is so wrong. You only need to look.... by ip_freely_2000 · · Score: 1

    ...into the past to see that markets can make significant changes to adopt new and better standards.

    There used to be an old saying in the early 70's: "No one ever got fired for buying IBM". IBM offered solid mainframe and decent midrange solutions for businesses. Mostly businesses that trusted a vendor and went with the flow.

    Eventually, businesses learned about IT and realized that other vendors also had viable options.

    I believe that eventaully, the corporate desktop will switch. Where hardware systems are standard, and admin support becomes suitably trained, and office productivity applications become solid ( and more browser based ) there will be gradual switch.

    Companies realize they can as much for much less, and their people can actually 'walk the walk' there will be a significant dent in Windows marketshare.

    It's just a matter of time.

  79. RE: Linux Can't Kill Windows by Lehk228 · · Score: 5, Funny

    Linux Can't Kill Windows

    I see someone didn't try to dual boot Fedora Core 2

    --
    Snowden and Manning are heroes.
  80. This guy obviously has no idea what he is talking by after+fallout · · Score: 1
    Linux itself is not a platform(it is just a kernel after all), but when most people talk about Linux they mean a platform based on Linux(or in other words a distro). Fedora is a really nice operating system, so is RHEL, Mandriva, Linspire, SUSE, and others.

    When a Gentoo system is set up correctly, it is so easy to keep. I can't imagine anyone who sets up a Gentoo distro, correctly, ever switching to another operating system.

    This guy doesn't understand the mentality behind open source. If he has any experience, it was a failed attempt at setting up his own system (something that with some distros is actually hard to do: try simplymepis or knoppix; and those two are actually designed not to take over the desktop). The basis for opens source in general is: if something can work better, we will change it to make it better.

    Linux may not destroy Windows but it definatly has the potential to lower the Windows marketshare down to about where OS 9 was. There will always be diehard Windows fans(just like there are mac fanatics) but the average Windows user just wants a computer that works to let them type, browse the web, check email, and some of them want to talk to other people. I have met people who actually don't know what Windows is. They turn on their computers and expect them to work.

    Eventually what will(should) happen is that operating systems become so interchangable that many people don't know or care what OS they are running. Using a computer will just be second nature. The way it is used is just an extention of how the user thinks. Linux has the potential to become this system, and Windows(in its current and proposed future form) doesn't. Windows is the system that is doomed.

  81. This article brings about two images in my mind by CHESTER+COPPERPOT · · Score: 1

    First image is of the author being like a monkey with a screwdriver fiddling around in the back of a television.

    The second image brings up a dastardly /. editor lowering a goat into the Velociraptor pen that is /..

  82. Flame Bait by methuselah · · Score: 1

    If you can't get your drivel read and all else fails then troll.....

  83. IT Reporting and Analysis by Anonymous Coward · · Score: 0

    People have complained about the quality of Slashdot comments and journalism for years. What I'd like to know is: how is so-called 'professional' IT journalism any better than the run-of-the-mill tripe you can read in the thousands of Slashdot comments submitted daily? Really.

    Quite frankly, I suspect most Slashdot posters, brash and illiterate as they are, know a hell of a lot more about IT than most Gartner analysts and their ilk. Who creates a market for this garbage? I really don't get it.

  84. yeah, markets never change.. by dAzED1 · · Score: 1

    But you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it.

    And here I thought it was succeeding because it wasn't doing that.

    Good thing we're all still going to theatres as the only place we can see movies...oh wait, we can see them on tv too...oh, then again, there's those new-fangled vhs and dvd thingies, so we can watch them at home...or, watch them online...or watch them on a psp or even xbox...

    Things change. The Open Source movement is considerably more versitle. We're also more prepared to deal with emerging technology.

    And remember, there's more to the community than just the Linux kernel.

  85. Missing the obvious point by Anonymous Coward · · Score: 0

    Ok, both the parent article and the replies so far have completely missed the major point here. Yes, the article is right... even in the mid and long term, Linux is never going to replace Windows in the desktop market. However, there is a very, very significant reason why this is true.

    It's the games.

    No, I'm not joking here; the fact that Windows is effectively the only serious choice of operating systems for PC gamers ensures it an ongoing stranglehold on the home and office desktop markets for as long as the situation continues. I know somebody is going to jump in here and start telling me about all the ways you can get certain big name PC games running under Linux. This is missing the point entirely. PC gaming, under Windows XP, has essentially reached a point where it is almost (but not quite) as simple as console gaming. You put the disk in the drive, you install, you go. If you try this on a fresh-from-the-box PC, you'll probably have to reboot when it installs a new directx version, but that's about it. It's been a long time since I had to go scrambling around to find new video card drivers, sound card drivers or anything else of this ilk to get a PC game running under Windows XP. The simple fact is that you cannot do this on Linux. For a couple of games, it's more or less possible, but these are very much a minority (and a minority that isn't really going). By and large, a few of the big-name fpses will work under Linux, but if you can't get Deer Hunter and the latest Sims expansion running in under 10 minutes, it's never going to get into the mass market.

    So, why does this matter beyond the home market? Simple... a lot of homes these days of people in the socio-economic group who tend to work at a PC in an office contain a home computer. Chances are that this computer will get at least some use for games, either by adults or the kids in the house. Assuming that nobody in the house is a geek, this makes Windows the only choice for an operating system. Dual-boot systems are not a concept that ever crosses the mind of the average user.

    Now, when your average non-geek computer owner starts a new job with a company, he'll probably walk in on day 1 and sit down at a PC running windows. Already, his employer can more or less take it for granted that he knows how to navigate Windows, use IE, Word and a few other common software packages. Sure, you might need to teach him how to use Excel or Powerpoint, but the basics will already be there. If he comes in and sits down in front of an operating system he doesn't recognise, your training costs are going to be higher and it's going to take longer to get new employees up to speed. When the geek from IT goes before the board and tells them how they could do all their IT stuff better on Linux and not even have to pay for the operating system, the board are going to be alert to these factors. Chances are, their response to the IT geek will be "thanks, but no thanks".

    To cut a long story short, having the vast majority of your new employees already familiar with your IT systems before they even start work is an absolutely huge financial benefit. Linux, as it stands, has no hope of emulating this.

  86. Whatever by tbcpp · · Score: 1

    Couldn't someone have said the same thing about Apache and any other opensource project. No, Linux will never kill. Windows, but who cares? Just like SGI will never really die, but it's all but dead right now. Really ./ posts like this are really useless. It reminds me of the first Presidential Debate last year, the entire thing consisted of "yes you did" and "no I didn't". Like a bunch of fighting kids. If this ./ article is not flamebait, I don't know what is.

    --
    Man is the lowest-cost, 150-pound, nonlinear, all-purpose computer system which can be mass-produced by unskilled labor.
  87. average computer users.. by Cheeze · · Score: 1

    ...don't care what operating system is on their computer. If they can:

    1. get their mail
    2. browse the web
    3. fileshare
    4. listen to music/watch videos
    5. play games (purchased, or web-based)
    6. maybe light use of an office suite
    7. do taxes

    of all of those, number 5 and 7 are almost impossible. Some games come with linux support, but they are slower than the windows versions. Web-based games are gaining ground, but some still require ActiveX plugins. Last time I checked (yeah, i already did my taxes this year), there were NO way to do your taxes on a linux computer, unless you use a web-based tax solution. I've used one before, and it was nice, but didn't seem to have all of the features that I would have expected.

    oh yeah, and 99% of people will never try to re-install their operating system. Of the 1% that will try, most of those will use their windows reinstall disk they got with their computer.

    Note: these stats are made up, but look around you when you are at work. Count how many people have even the most basic computer hardware knowledge. Then count how many have the free time to spend to reinstall a whole operating system and update all of the patches.

    --
    Why read the article when I can just make up a snap judgement?
    1. Re:average computer users.. by infinii · · Score: 2, Insightful

      look around you when you are at work. Count how many people have even the most basic computer hardware knowledge. Then count how many have the free time to spend to reinstall a whole operating system and update all of the patches.

      Here is where you make your most important point and the one that the Linux community fails to grasp.

      97% of the world's users do not have the comprehension required to do a
      emerge
      make buildworld
      apt-get update
      etc
      and deal with broken dependencies, etc that inevitably happen.

      OTOH, OS X System Update works flawlessly. And Apple doesn't put barriers to updating your machine with incessant checks on your serial/cdkey/license/etc. MSFT should realize that it's in their best interest to patch ALL Windows installations and not just legally licenced ones.

    2. Re:average computer users.. by Punboy · · Score: 1

      Dude, TurboTax online works perfectly on Linux. thats what my family uses. And if game makers would actually write their games FOR linux, they would run just as fast on their windows counterparts. The reason they don't is because they write linux wrappers for windows code.

      --
      If you like what I've said here, and want to read more, go to http://www.krillrblog.com
    3. Re:average computer users.. by Cheeze · · Score: 1

      So true. I recently did up2date on RHEL and it kept erroring out on openoffice updates. I was using Advanced Server 3, and it had openoffice installed.

      You'd think a company like RedHat would have their shit together enough to be able to take a stock install of any of their shipping products, and at least get it to do a proper update. Now i'm not trying to say anything dispariaging about them, but to me, getting a fatal up2date error on packaged RHEL AS3 seems like someone should get fired.

      Oh, and to fix the problem, I had to manually remove openoffice, and then run up2date again. After running, i noticed up2date REINSTALLED openoffice even though I had rpm -e'ed it.

      I wish someone would make a normal APT-based distribution and provide commercial support. It would be so easy to take ubuntu-style cd and make it a bootable server. If only someone would provide support....

      --
      Why read the article when I can just make up a snap judgement?
  88. lame by placiBo · · Score: 1

    The author doesn't seem to know an awful lot about GNU/Linux. He categorizes Linux, *BSD and Darwin all as Open Source versions of Unix (he refers to them using the term 'Open Source Unix').

    Had a look at the column he writes as well, couldn't find a single non-windows article....

    1. Re:lame by Punboy · · Score: 1

      Um.. I don't know if you noticed, but... *BSD and Darwin /are/ free, opensource versions of Unix. Linux however, is not. Linux is POSIX-compliant, however.

      --
      If you like what I've said here, and want to read more, go to http://www.krillrblog.com
  89. win for dozers, *nix for u and i! by m4c+north · · Score: 2, Interesting
    The answer is, I think, obvious --- Linux is the OS designed by geeks, for geeks. It's the classic example of overengineering the wheel.

    Yes, precisely. As 'easy' as apt and rpm are, installing things in Linux is still a mystery for many people. The idea of "there is no C:\ drive, Neo," usually brings out the glossed-over eyes as their mind crashes and displays the native blue screen of d3th.

    Many Windows dependents are so jacked in that permissions and the file hierarchy of *nix are more than they will ever understand about computers. (people are still on the fence about switching to Firefox!)

    But I like it that way! It keeps us enthusiasts shrowded in mystery. And what Americans (wait, I mean people in general) don't understand, they fear. Pay no attention to the man behind the curtain, he's only writing a shell script.

    --
    Who's your user, program?
    1. Re:win for dozers, *nix for u and i! by Anonymous Coward · · Score: 0

      "It keeps us enthusiasts shrowded in mystery."

      Oh boy! You are one inadequate individual if that's how you maintain your self-esteem.

      Go out in the real world and make some freinds.

  90. DESKIX by GodLived · · Score: 1
    An operating system is a rack into which device drivers and APIs are inserted. A platform is a rack into which applications are inserted.
    I concede that Linux (kernel plus drivers) is not itself a platform, but most users acquire Linux through the context of a much larger distribution that is, by the article's definition, a platform. The problem is that there are too many distros all doing different things, and it's hard for a novice desktopper to pick one.

    The best distro people should convene and define a single distribution standard aimed at creating distros for novice user desktop replacement. Think POSIX for apps, maybe call it DESKIX (name not taken), whereby any two DESKIX distros are guaranteed file- and service-level compatible.

    The standard should require a suite of MS-compatible apps like OpenOffice, specify a boot manager and appropriate installation wizards, security using reasonable best practices, apt-get like functionality for package download and management, and should specify that all licenses ensure binaries are completely free.

    Then, they should follow Firefox's model and market the bejeesus out of the standard and distros supporting the standard.

    Then, and only then, will Microsoft have something to worry about.

  91. Nobody ever got fired by MajorDick · · Score: 1

    For buying IBM the saying used to go.

    The same can now be said of Microsoft

    People who BUY windows 9 times out of 10 arent buyign an operating system as they see it they are buying comfort and peace of mind, they are (or would like to belive) they are familiar with it and hey everybody is using it it cant be too bad
    Now to us *nix type that may be crap, and it is, but people are funny animals they do what makes them feel good and as bad as it is with spyware and broken API's it does make them feel good, just as a Mac does an Apple fan
    When theyve had too much and boil over we pick them up as a Rabid Linux convert, but Hey

    I can honestly see the Author has some good points, sure leaves room for thought and discussion.

  92. But by Chuck+Chunder · · Score: 1

    Isn't OS X, which he seems to say is a platform, built upon a unixish BSD?
    I don't see why the same thing can't happen with Linux. It's going to take some work for sure. Luckily people do seem to be working in that general direction...

    --
    Boffoonery - downloadable Comedy Benefit for Bletchley Park
  93. Let the Rubbish Roll by adesm · · Score: 2, Insightful

    For pity's sake - this 'article' has also been plugged on OSNews. Users there have sensibly concluded that this thing is either straight FUD or a complete troll.

    The writer uses no statistics, data or representative sampling. He cannot point to a single concrete example of his central thesis. He seems incapable of understanding the developmental changes which have enabled Linux in the past few years to 'fill the gap' between a user's desire and results. In short, the article bearly passes muster as opinion piece, never mind journalism. Many would say that all of the above marks it as a Troll, with timeshare rights under the FUD-Bridge.

    Dupes are bad enough, misleading headlines are even worse. Putting this type of troll-crud onto the front page is a serious dereliction of editorial control by /.

  94. Holy christ! If Windows can't be killed... by IronChefMorimoto · · Score: 1

    ...then ./ has had that icon with Borg-Gates right all along. An indestructible force in the universe that even a hacker friendly penguin defending the forces of good can't destroy.

    I'm heading to Publix to buy bread, milk, and beer. Then Wal-Mart for ammo. The end of the world is here!

    IronChefMorimoto

  95. Sorta right by scorp1us · · Score: 0

    This reinforces my comments (for which I receiced flamage and praise) about Linux being Buhddism and Windows being some form of Christianity.

    You can't expect a non-agressive operating system to overcome one that is willing to sign exclusivity deals and such.

    If/when Linux takes over windows it will be one one way - the same way that windows got to be omnipresent - trickle-down from companies.

    If we can get companies to adopt Linux on the corporate desktop, the home desktops will follow.

    Focusing on corporate desktops is something we can do, one company at a time. Eventually we'll ahve critical mass and the rest will collapse in, with the home market to follow.

    Focusing on corporate desktops though is hard - they are well seated on Windows. Anything is an upheaval. We'll need to seed it into new companies. For existing companies, we need to find ways of mitigating (where WORTH mitigating) the others. ( + XDMCP server anyone??)

    Just think, of IBM had bought MINIX instead of DOS, we'd probably all be on Linux now. IT TRICKLES DOWN.

    --
    Slashdot's rate-of-post filter: Preventing you from posting too many great ideas at once.
    1. Re:Sorta right by NoMoreNicksLeft · · Score: 1

      It is too bad that we can't have a DE for linux that looks exactly like XP, on down to claiming to be XP in the various dialogs and so forth.

      I've considered doing such in the past myself, and calling it Girlfriend Linux (as in, the distro you install on the girlfriend's computer so she won't know that she's using it). But I'm 100% certain you'd be sued just for using the various bitmaps in the themes that you'd need.

      One or two guys in an IT dept. with such though, could do covert migration...

      A few aliases would cripple bash back down to cmd.exe's functionality (not that there is much worry of the intended audience using cmd.exe).

      A firefox theme could make it look like IE well enough (if uglier).

      Not sure which window manager to use, but certainly it wouldn't be much more than making a theme and perhaps writing a few gui wizards?

    2. Re:Sorta right by scorp1us · · Score: 1

      I would not waste your time.

      Spend the time instead on a migration tool so that KDE/GNOME will pick up your data and settings (As I wrote about here

      Just use the XP migration tool to generate a CD or whatever, and be able to open it up and suck it into Linux.

      --
      Slashdot's rate-of-post filter: Preventing you from posting too many great ideas at once.
    3. Re:Sorta right by NoMoreNicksLeft · · Score: 1

      You're missing the point. Linux is already better, can do the things I need, and in my case, that my girlfriend needs.

      However, she just won't use it. It's a headache, even after I reinstalled win2k, she's went right back to installing the stupid shareware games that caused the problem in the first place.

      But linux that looks like windows? She'd never know. Have the few things she installs run through wine, and if wine can't handle them... "Honey, I dunno.. those shareware guys aren't the brightest, maybe their game doesn't even work!".

    4. Re:Sorta right by scorp1us · · Score: 1

      I don't think I missed the point, because I've had the same problems that you do. We both agree Linux is superior.

      Why won't she use it? Quantify that for me. If everything looks 99% the same could she even tell?

      Maybe the icons are more colorful and the start button is a lizard, but in transferring the settings you'd also import the look and feel of windows. Like click-to-focus, double/single click etc.

      At what point will she stop caring?

      --
      Slashdot's rate-of-post filter: Preventing you from posting too many great ideas at once.
    5. Re:Sorta right by NoMoreNicksLeft · · Score: 1

      In my opinion, just simply the fact that it's not windows. Click-to-focus isn't what bothers her, it's seeing the gnome footprint icon on the bottom left corner.

      Let's change that to the windows logo, just as it looks on XP.

  96. Linux ain't supposed to kill Windows! by cyclist1200 · · Score: 1

    The purpose of Linux isn't to kill Windows, it's to provide a high-class alternative for those that want it. What part of the word "choice" doesn't the author understand?

  97. I really hate to agree.... by suman28 · · Score: 1

    But there is a tiny grain of truth to this article as things stand right now. I mean, I had stopped using my laptop which had Linux installed because I was tired of rebooting to Windows to play games. So, instead I just kept it on Windows. This on top of the fact that, I had a few problems with the installation ofcourse. The problems were fixed, but I didn't see why I had to face those problems in the first place (like mouse problems, network card, and other minor things). So, having said this, as of right now, Windows is going to front and center because it looks pretty and works. Most users don't know much about the security issues plauging the Windows platform and hence don't care to switch, which means it will not become mainstream soon.

  98. But that's not his point. by Short+Circuit · · Score: 1

    His point is that Windows, as a tightly integrated package, provides a solid base for applications developers.

    However, I don't see why that doesn't apply to GNOME or KDE, which have the additional benefits of being largely architecture-independant. Wasn't Nautilus originally a third-party application written to integrate with GNOME and Enlightenment?

  99. Nothing to see here! by SteakandcheeseUm · · Score: 1

    "SPONSORED LINKS

    Microsoft - Learn, solve, and grow at TechEd 2005
    Microsoft - TechEd 2005, June 5-10, Orlando. Explore
    HP Big Impact. Small Size. HP LaserJet 4345mfp
    Microsoft - Learn from peers and experts at
    Avaya - Ready for 99 million teleworkers? Avaya"

    Sounds to me like this is more of micro$oft's campaign to kill linux.

  100. Links fixed by scorp1us · · Score: 1

    ocusing on corporate desktops though is hard - they are well seated on Windows. Anything is an upheaval. We'll need to seed it into new companies. For existing companies, we need to find ways of mitigating (where WORTH mitigating) the others.

    (XLive CD +
    XDMCP server anyone??)

    --
    Slashdot's rate-of-post filter: Preventing you from posting too many great ideas at once.
  101. Author Tool by RedHat+Rocky · · Score: 1

    Tom Yager has been an Apple fanboy for years.

    Wait, did he just say OSX and Java?
    *sigh*

    Whatever dude. I guess all those folks rolling out Linux left and right are just a bunch of morons, clearly running a closed hardware platform is the way to go. I mean, I hate being able to buy whatever hardware I want, even from Walmart and have it work in my machine. I'd much rather have a vendor tell me what to buy and when. Then I can stop thinking and follow the rest of the sheep to the Altar of Shiny Things.

    Now, give Steve back his Unreality Shield, you've had it long enough.

    --
    Anything is possible given time and money.
  102. Same type of mindset... by technomancer68 · · Score: 1

    This is the same type of mindset that has kept putting Republicans and Democrats in office over the many years in the US. I vote libertarian every year and it doesn't work, why, because people are afraid of wasting their vote and so they don't vote that. How can I make the stretch of comparing that to Windows/Linux, well the same can be said about software. Most non-geek people don't use Linux because the software can not be found easily in stores where they can get a pretty box with a pretty documentation to go along with it. And the reason for that is because most commercial programmers write for windows because it's the only "sure" thing in the realm of popular consumers. I know I will probably get modded down for this comment, but it's true. If you don't think so, go to any popular store and look at their shelf. You might find Linux Distros, and maybe one or two software titles, but you will bombarded with windows titles. Average everyday people will not buy an OS that they can't find software for on the shelves (even when you tell them they can get it for free online) and major software companies will not waste time writing software for a platform that they can't make tons of money on. It's a catch22 situation unfortunately..

    --

    The Technomancer
    "Men of lofty genius when they are doing the least work are most active."-
  103. PCs killed mainframes? by iBod · · Score: 1

    "PCs killed mainframes."

    Really!

    I must have missed that.

    There are still plenty of mainframes in the world. IBM's mainframe division is still highly profitable.

    I can't think of a single case where a mainframe was replaced by a 'PC'. Some were replaced by midrange systems runing UNIX or AS/400 etc. but all the PC actually did was replace the dumb 3270 terminal on the users desk and ran a 3270 terminal emulator.

  104. Is the point to kill Windows... by geoffrobinson · · Score: 2, Insightful

    or to have a good alternative? The author misses the point. Those of us who choose to, don't have to be forced to use Windows. And that's the point.

    --
    Except for ending slavery, the Nazis, communism, & securing American independence, war has never solved anything.
  105. Even with the -9 switch? by selectspec · · Score: 1, Funny

    You can kill almost anything with the -9 switch.

    --

    Someone you trust is one of us.

    1. Re:Even with the -9 switch? by REggert · · Score: 1

      Unless it gets into state "D", "uninterruptible sleep" (as per top's man page). All it has to do is access an NFS mount from a server that has become unresponsive. I had this happen just this morning. Bash (which had frozen up during auto-complete) wouldn't die even after the NFS server was rebooted!

      --

      cp /dev/zero ~/signature.txt

    2. Re:Even with the -9 switch? by Anonymous Coward · · Score: 0

      Mount with the "intr" option. If you want to know when the server goes down, also specify "soft", which does an I/O error when an NFS server times out.

  106. Yes Because... by l4m3z0r · · Score: 1
    ..it will never put a dent in Windows' mind share or market share..

    ..things never change, companys NEVER go out of business and they never ever go from having 95% of a market to having nothing.

    I call one big bullshit on this whole mentality. MS and Windows will one day go away. Whether or not linux will still be around by then is up for debate but to suggest somehting will never go away is a pretty foolish thing to do. Hell you can't even say that about the sun, and to suggest it about microsoft is incredibly short sighted.

    Personally my opinion is that the current way we do computing will be gone in 30 years. We will be looking back at this time period going, man what the hell where they thinking using those primitive things. And as such an OS like we see it today will be completely obsolete, destroying MS mindshare and market share in one fell swoop.

  107. Deja Vu by nurd68 · · Score: 1

    People said the same thing about IBM some 20 years ago. Then a little upstart came along with an OS they purchased from some little company in the Pacific Northwest. They licensed it to IBM and everyone else.

    Fast forward - here is a similar situation, except that the OS is free and the incumbent has a much better foothold than IBM ever did.

  108. LAMP (Fp) by Max_W · · Score: 1

    LAMP - Linux, Apache, MySQL, PHP. It works. It is fast. It is clever and understandable.

    And if you want to get the same functionality from Windows server... Good luck! You will need it. They split everything and sell it piece by piece. Before long your company is the filial of the MS. And it is so obfuscating, just to hide why it was done so.

    Windows is very good in creating and controlling "drivers' hell". Try to issue the Linux driver for the hardware, which you produce, and see what happens. They are very good at it, and that is why they control the desktop.

    Ohere nice soft - Firefox, phpMyAdmin, Google - run on Linux all right too.

  109. Linux is to DOS as NT is to.... by Anonymous Coward · · Score: 0

    Slackware. Linux might not surpass Windows, but SuSE or Lindows might. Give it time to mature and keep giving it away cheap/for free and it will continue to slowly suck up market share. Once this momentum reaches a certain critical mass, this growth will not be slow any more.

  110. Microsoft are behind this - they are S***t scared by Anonymous Coward · · Score: 0

    The headline is a very bold statement. Judging by the words that are being used I would say that Microsoft are behind this all the way and this chappie is on their payroll.
    Why am I saying this - because I have been in numerous Microsoft competitive situations for over 18 years and they often talk about killing the competition.
    Also - judging by his comments about Linux not being scalable - well only somebody who doesn't have a clue about Linux would say that. So if he has any knowledge of computing at all it would probably be around windows - if at all ;-).
    Now that a real competitor emerges in the form of Linux, they have become fearful and are trying to push opinion on the folks who are non IT savvy.

  111. there is a simpsons quote for every situation by Anonymous Coward · · Score: 0

    Kent: [jumping in, panting] Hello, I'm Kent Brockman! Our top stories tonight: a tremendous explosion in the price of lumber, President Reagan dyes...his hair, plus Garry Trudeau and his new musical comedy revue. But first! Let's check the death count from the killer storm bearing down on us like a shotgun full of snow.

    Weatherman: Well, Kent, as of now the death count is zero. But it is ready to shoot right up.

    Kent: Oh my God. [shakes fist at heaven] Damn you snow!

  112. Assuming the status quo by kronocide · · Score: 1

    I think the author is making the mistake of assuming that things will stay the same. And you know, as long as things don't change, they will! He's giving a description of how things are (commonly perceived to be) now. He doesn't even try to describe some kind of dynamic for change. There is none. Things will be this way forever. Right. The future may be very hard to predict, but one thing is sure, it'll be different than today.That's especially true of operating systems and computer corporations.

  113. Since when is it about being better? by mi · · Score: 1
    Show me charts and stats and benchmarks that prove Linux superior to Windows in every measure and I'll not argue with you.
    As if anyone can present such charts to support Windows. If it was ever about, actually, being measurably better, Microsoft would not exist. Heck, Linux would not exist, because BSD is quietly superior...
    --
    In Soviet Washington the swamp drains you.
  114. This confirms what I've always suspected... by Anita+Coney · · Score: 1

    Tom Yager is a moron!

    --
    If someone says he and his monkey have nothing to hide, they almost certainly do.
  115. Operating systems are irrelevant by Junks+Jerzey · · Score: 1

    At the user level, no one wants an "operating system." People want applications and a way to use them. Thinking that people want UNIX or Linux or whatever doesn't make any sense.

    From a more techie point of view, big operating systems are a relic from earlier days of computing. Look at how successful game consoles are, and yet they essentially have no more than a BIOS in firmware. All this debate about Linux and Windows and so on is misguided. That's old, tech-oriented thinking.

    1. Re:Operating systems are irrelevant by jimwelch · · Score: 1

      Yes, your are correct, they don't care about which OS (kernel), but the OS is an application to most users. When they have to pay for upgrades, virus proctection, pop-up blockers, spam removal, etc. it becomes visable to users as an application. As Windows become more fragile and Linux becomes more of a status symbol, things will change.

      --
      Never trust a man wearing a coat and tie!
  116. What is the real goal? by pvera · · Score: 2, Insightful

    Is the real goal to come out with a great OS? Or is it to kill Microsoft?

    Ever heard that BSD is for geeks that love Unix, while Linux is for geeks that hate Microsoft?

    --
    Pedro
    ----
    The Insomniac Coder
    1. Re:What is the real goal? by advocate_one · · Score: 1
      the real goal is... wait for it...


      TOTAL WORLD DOMINATION!!! if we happen to kill Microsoft on the way, that's just a happy side effect...

      "World domination. Fast." - Linus Torvalds
      --
      Donald 'Duck' Dunn: We had a band powerful enough to turn goat piss into gasoline.
  117. Experience Says Otherwise... by ubuntu · · Score: 1

    Every product is vulnerable to failure and obsolescence. Look at the rise and fall (and rise again) of Apple. Look at Novell Netware. Look at Corel's Wordperfect. It wouldn't take much for Windows to join their former victims in the "Where Are They Now?" pile. The market is prone to crazy reversals of fortune.

    Not since the big dotcom boom have I heard that old familiar mantra: "This time it's different!". What I've learned from the dotcom boom is that it's NEVER different. Evolution and revolution happen. Things get better and the laggards disappear for lack of interest.

    In short, I don't think the domination of Windows is forever. And the reason I don't think so is because yesterday my Mac Switcher friend at work lent me his copy of the Ubuntu PPC LiveCD, I tried it on my PowerBook last night, and today, I've already downloaded the x86 version and am writing this post from Ubuntu. THAT'S how fast it can change. I never tried Ubuntu before last night, but I honestly can't believe how bloody GOOD it is! I laughed out loud with happiness the way I did the first time I booted up my Mac.

    And if it can happen to me, it can happen to anyone. The people just have to discover Linux. Seriously, very very few even know that Linux exists, and that must change. Once it does, we will win.

    p.s. I can't believe I signed up just this morning and nobody had the nym ubuntu yet! I feel almost guilty, like I'm one of those domain name squatters or something, but I believe in ubuntu as much as anybody else. Humanity to Others!

  118. It reminds me of T.J. Watson's quote by Tamerlan · · Score: 1

    "I think there is a world market for maybe five computers". Duh!

  119. Misunderstanding by Anonymous Coward · · Score: 0

    Based on the responses I've read, I think many people are misunderstanding what the author is trying to say in this article.

    Many customers, sadly, are looking for a coherent platform for developing applications and implementing systems. With Microsoft, if they say "We need a database!" the response is "SQL Server." If they hear "We need developer tools!" the response is "Visual Studio." As good or as bad as these products are (and I certainly have my opinion) they are part of the Microsoft platform.

    In the Open Source world (here the author says Linux, but I think Open Source is more to the point) we trumpet the sheer variety of solutions that we offer as a benefit. The corporate and goverment buyers of technology, however, are more concerned with making the wrong choices than they are with spending the money necessary to buy into a coherent, if flawed, platform. The uncertainty associated with having to choose a free database is replaced with just saying "SQL Server."

    Personally, I'm squarely in the Linux camp; I just think that Linux folks need to open up their eyes to what most real-world buyers use to evaluate software systems. Limiting uncertainty is high on that list, especially for the risk-averse types that inhabit most institutional buyer roles.

  120. Re:The Penquin Speaks... by Anonymous Coward · · Score: 0

    qt and gtk maybe?

  121. Could someone explain what this article meant? by daviddennis · · Score: 1

    It seems to be saying that Windows includes everything but Linux doesn't.

    But I can get a Linux distribution that has mySQL and PHP and I can do everything with it that I could do with Windows and ASP -- and I'd have to buy the expensive version of Windows and a pricey SQL Server license to do it.

    So I don't get it. Perhaps someone can explain what he actually means.

    D

  122. Windows is Easier (to get _pre_installed) by newend · · Score: 1
    I also did not RTFA, but I think the main thing that Windows has over Linux is that you can buy a PC at Best Buy or CompUSA that has Windows preinstalled and included in the price. I wonder how many people actually upgrade there computer with new Windows versions, and how many just buy a new computer every few years with the latest version.

    Many of the hard core computer users I know will rebuild their Windows box several times a year, but I've seen far more computers that are so bogged down with all sorts of crap in the registry and 50 apps that startup on boot that the machine is practically useless.

    Does anyone else out there think that M$ deliberatly sabatoges users machines slowly so that users think they need to buy new machines every other year? I feel like when I built my P3 800MHz machine running Win2k it booted almost instantly, and before I put linux on it the boot/shutdown too forever!

    I think the only way that Linux is going to get a large market share is if it gets into schools and businesses. Once people get more comfortable with the OS, they will want to use it at home. As of right now, the biggest argument I hear from people not wanting to install Linux is "what does it do that Windows doesn't?" For most people security and stability lose out over ease of installations in Windows (I know ./configure, make, make install) and compatibility with just about everything.

    1. Re:Windows is Easier (to get _pre_installed) by Anonymous Coward · · Score: 0

      I feel like when I built my P3 800MHz machine running Win2k it booted almost instantly, and before I put linux on it the boot/shutdown too forever!

      Maybe you should learn how to properly administer a windows machine? Seriously, I see geeks who put very little effort into learning the internals of windows and then they complain about how it is buggy and slow. These same geeks put massive effort into learning everything that they can about Linux and then talk about how fast and stable it is. Maybe if they just put the same effort into learning about windows they wouldn't have to worry about the boot/shutdown too forever!

      I say this as a guy who uses SuSE 9.0 on one laptop, Slackware 10.1 on another laptop and Windows 2000 on my main desktop machine. I cannot remember the last time that I had a problem with my windows machine. Yet I often have problems with Linux. But I don't blame the problem on Linux, I blame myself for not yet being knowledgable about the OS to prevent problems from occuring. Why do so many geeks blame microsoft for problems that really arise from the geeks own ignorance of the true workings of the OS? Pride maybe? Herd mentality? Groupthink? Bashing M$ is the cool thing to do?

    2. Re:Windows is Easier (to get _pre_installed) by Deeze · · Score: 1

      "Does anyone else out there think that M$ deliberatly sabatoges users machines slowly so that users think they need to buy new machines every other year?"

      This is known as planned obsolescence.

      http://en.wikipedia.org/wiki/Planned_obsolescence

  123. Desktop Users by lcfactor · · Score: 1

    I think the article writer here is definatey trying to start some serious commotion about linux on the desktop and as a client system, or as a system for a bold MCSE lineage admin- I think the real thing here is to try to turn up case studies on the uninitiated...

    I always sort of wonder about the guy who walks into BestBuy with minimal linux knowledge or a few references from friends, looks at the sub $100 pricetag on RH or SuSE and the inclusion of the whole office suite and decides to give it a whirl, discovering on the other side KDE and OpenOffice, and sticks with that as a platform- slowly treading into the linux community (there must be a few). This dude slowly treading into the linux community and seeing what's up... I wonder how one get's statistics on him... I've had a bunch of friends who I talk about linux to who are sort of windows gamer/techies, who kind of look at what I do as wizardry. They always say, hey I tried linux back in 2001 or 2002 and nothing worked, and the desktop didn't do what I needed and it was hard (these are guys who have 10 things to do at the command prompt and are always both proud and nervous about their knowledge, but would be willing to learn if there was an easy path for them to follow). I often tell them that if they took a fresh look at what companies like RH or SuSE are shipping today out of the box for the desktop, they would see a big change. It's important to remember that OO is barely out of V1...

    I'm a mixed linux/windows/OS X admin, and have found linux to be a remarkably stable and solid server of for our production and dev servers, when we got into linux, replacing a mixed W2k and AppleShare environment, things were still a bit shaky on the distros. We've recently been upgrading everything to SuSE 9 and I've been amazed by how strong the GUI/Yast tools are out of the box on the enterprise servers- I can imagine a Win2003 admin having an easier (point and click) time with this OS and maybe having the thought, "$300 for a licence and it does everything that a top of the line Win2003 box can do" (I'm talking about a LAN/office/file sharing installation here).

    I sort of feel that these cases are the key... those of us that have taken time to dig deeper into the Linux OS to make it work for us and have discovered the posibilities it opens are not really of the right mindset to evaluate the future of the 'platform', to do that you have to kind of come in from scratch as a point and clicker and see what you can do. Most importantly I think is seeing what linux can do for one of these types on the desktop or on the server, and how they can grow with it as a new platform is the real key to the client growth we're talking about here. With real world experience of the fairly new, functional out of the box 'packages' we still have yet to see wheather it's truly viable.

    The author is correct in the fact that apple has kind of beat out the linux distro's a little but in putting a killer front end on Darwin both on the Client and on the Server- it's a very attractive offering. OS X server has been very attractive to us, but hardware versatility has kept us on the Linux platform... we do have OS X machines everywhere in Video, Audio and Design and must say they fit into our Linux based, windows emulated network like a dream.

    None of this of course takes into account emerging markets where if someone really figured out how to package a low cost powerful application platform that was easy to understand out of the box on linux, then 5 or 10 years from now, we could really be in a different ballgame worldwide.

    I guess I'm saying that since we're really talking about switching here, it's really all in how people get started. First impressions are the killer.

  124. "GNU/Linux"? Probably not. by tmasky · · Score: 1

    I'd gamble my money that if the ReactOS project (Windows clone) comes close to maturity.. you'll see more than just a little dent hit Windows.

    People like things for free. Unfortunately few care about being free.

    I see the ReactOS project as an unfortunate stepping stone. No disrespect to the developers - I have a lot of respect towards what they're doing and view it as necessary. People need to be weened off Windows and developers will follow. But ReactOS itself will have a finite lifespan.

    Probably not a bad thing. Linux (the kernel), at least as we know it today, probably does too.

    When ReactOS can install MS Office, DirectX and hardware drivers happily - just watch the shift. It will be more secure, faster and generally better than "Windows". The choice for gamers, the choice for PC manufacturers cutting costs, the choice to install on your parents' computer.

    Today, GNU/Linux is a brilliant replacement for those who cut the cord and dive in. It's unfortunate that the masses won't realise or respect the parallel drive which has been occurring for over the past decade to give people another viable, open and free choice.

    At least when ReactOS hits hard, developers will have portability as a focus. Everyone will win - it's called choice. And within the next decade I bet we'll see the a distributed share. Not a landslide "victory".

    1. Re:"GNU/Linux"? Probably not. by Anonymous Coward · · Score: 1, Insightful

      Are you joking? The fact that ReactOS is taking forever to make progress is proof that it will never take over windows.

      Especially when the goal is to copy windows, Microsoft can just pull the strings and ruin the compatibility that took years to develop in a very short matter of time if they felt threatened.

      What a big joke.

      Open Source will never compete with Windows on the desktop unless they can get their acts together and put out code faster and better than Microsoft does.

  125. Re:If you want to RTFA, but give no ad click bonus by shic · · Score: 1

    Linux alone is an OS but not a platform. Linux distributions bundle applications to present a platform. True - Linux alone will never be a platform - but neither will the NT kernel.

    I do not believe that businesses want self-contained systems - I believe business needs inter-operable systems. Linux has the potential to be the basis of the most consistent, predictable, scalable and inter-operable platform.

    Linux is not an application framework itself - there are, however numerous application frameworks which can be selected for Linux.

    If you think (as you claimed) that the windows platform guarantees inter-operability then you are living in an alternate reality. This is fallacious.

    Linux doesn't need to compete with Windows per-se, but Windows is competing with Linux. As the IT market matures more and more customers can fix their requirements. In turn, this makes credible the supply of bespoke configurations to best fit customer needs. While inertia may have hampered individuals moving away from Windows in the past, when new systems are specified the benefits of relaxed licence terms; scalability and expansive possibilities for configuration makes Linux a more and more appealing basis for a platform.

  126. All the fancy programs by Anonymous Coward · · Score: 0

    "and all the fancy programs that Windows has"

    Errm, Photoshop?

    (and please, nobody mention the GIMP).

    Apart from that, there are a ton of vertical apps that run only under Windows and if that app is core to your business then Linux is a non-starter.

    1. Re:All the fancy programs by korbin_dallas · · Score: 1

      Dear Sir,

      Please research this and tell me 2 vertical apps that have no linux equivalent.

      I want to be rich.

      Thank you.

      --
      They Live, We Sleep
  127. linux won't kill windows, unless by ActionAL · · Score: 1

    linux (right now) won't kill windows because

    1. linux can kill unix, because it's essentially a free unix!

    2. unix NEVER came close to killing windows.

    3. therefore unix/linux can't kill windows.

    4. UNLESS linux becomes a killer MAC OSX, imagine that, a free MAC OSX on powerpc and x86 platforms.
    What linux is missing is the mainstream ease and appeal. MAC OSX can bring it agains Windows. Get Linux to copy MAC OSX and you will kill Windows.

  128. Windows, a Lego OS by Anonymous Coward · · Score: 1, Interesting

    Open source Unix, in which category I place Linux, BSD, and Darwin (the OS layer of Apple's OS X), is a 500,000-piece bag of Legos that comes with some drawings and a few models you can use, build on, or tap into as references for your own creations.

    Actually, it is Windows the Lego OS. Let me explain. I install XP on my box. OK. I reboot. First, I need to find and install drivers for my graphics card. Reboot. Then for my sound card. Reboot. Then I buy a printer, I need to look for the correct drivers and install them. Reboot. I buy a scanner -> need to look for the drivers (sometimes they don't even exist for XP). I buy a USB key (mass storage) -> drivers.
    ever done the driver hunting on HP.com, ATI or nvidia.com ?

    Under Linux : I buy a distribution -> it detects my hardware and installs the drivers automatically. A printer or a scanner ? I go to a Config center, which installs for me the correct packages. I buy a USB mass storage device ? I plug, an icon appears. I buy a device that has a kernel module ? I plug it, then hotplug/udev loads the correct driver. No hassle, no reboot, this is done transparently.

    I am sorry, but Windows is not less a Lego when it comes to hardware support.

  129. Doesn't Get it at All by salesgeek · · Score: 1

    You could almost agree with the guy if it were not for the fact that Windows alone doesn't have what it takes. Only when combined with a couple other essential MS software packages does it even get close. When comparing platforms, you have to compare the whole stack - and that's where the *ixes are much better prepared to play. Look what's in the box:

    Windows: Not much other than IE, Outlook Express and the Accessories. You have to buy other apps and server software to get that vaunted MS platform. Buy Office, Exchange, Windows Server, etc.. before you even get close to having all the goodies. And when you do have them look out - you are locked in.

    Linux: Very deep pool of applications, apis and development tools for whatever you pay or not up front.

    The reason why MS is vunerable is that the platform does not cost $200 (cost of XP Pro license). It actually is more in the neighborhood of $450-$700 per workstation once you add the server side CALs and the office licenses. When you start looking at TCO, it's not even close unless you buy into using a false premise or start adding in soft cost guestimates to close the chasm between Linux and MS or for that matter Sun.

    --
    -- $G
  130. I think you are Winbdows users by essreenim · · Score: 1
    you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it.'"

    I think you mean MARKETING PLATFORM

    1. Re:I think you are Winbdows users by essreenim · · Score: 1
      You are right. Only later did I realise you are still all my Linux brothers. I am paranoid these days. As soon as I see a story like this I expect all the MS zealots to come out of the woodwork. Windows 2000 and XP are fantastic O.S.' - no really they are but not as good as Linux in many ways. They have the $$$ to keep the lions share of the market for a long time to come, so much so that my increasingly cynical mind expects them to almost pay people to post on /.

      I hope not!

      I hate to admit it but things could be even worse if Bill wasn't CEO!

      Who stole my jumper?? (jk)

    2. Re:I think you are Winbdows users by netdudeuk · · Score: 1

      I've got (old) news for you. He's not the CEO anymore ! It's good old Steve Ballmer now.

  131. The Difficulty of Linux by BurntNickel · · Score: 1

    No, I didn't read the article, but I've been thinking about the problem of Linux making significant penetration in the desktop market.

    The advantage that both Windows and OSX have over Linux is a centralized source with a single plan (we can hope). The problem with Linux is that it is only a kernel. The equivalent to XP or OSX are the various distributions. Each distribution is different enough from the next to not function identically. This is not the fault of Linux proper, but rather that what people often consider to be "Linux" is really the Linux kernel with bunches of added on user land programs and packages.

    The same problem appears in the X Window System. There is a common "X" server and API, but think of how many different window managers and GUI toolkits there are. All of this makes the user experience vastly different from system to system and even from application to application.

    I think people in general care less about wanting everything to be like windows than they want self-consistency. When something calls itself "Linux" there is a reasonable expectation that it will look, function and behave in the same way as any other "Linux".

    Flexibility and diversity are all nice, but would people really be willing to switch car makes and models if everyone of them had different controls and fuel requirements?

    --
    And the knowledge that they fear is a weapon to be used against them...
  132. Linux has no Reflection by delire · · Score: 2, Insightful

    To some extent he has a point, though it was never the intent of Linux (if one can name it as an entity) to 'Kill' Windows. Linux's performance offerings are known and overtly apparent to the computer consuming world, but the "Windows came with the PC" | "I don't like changes" renders adopting Linux as difficult as a name change for many; even when a distribution like Mepis proves that installing Linux is several degrees easier than Windows itself.

    Regardless, performance enhancements pull few punters other than power-users and those responsible for large mission critical deployments. The curious are simply an exception (myself included). This of course is statistically proven to be changing, but will happen most largely at the enterprise level, where people just simply find themselves working with Linux one day, and perhaps even decide they like it enough for home use.

    Perhaps another thing worth mentioning, on the level of branding is the Repitition-Produces-Comfort factor - people see WinXP at the boot promp and thus can project their workflow as a continuation of work done on another machine. I see that alot here at the university, which has both Fedora and XP on all machines. With Linux comes a strange kind of noise, for many; a class of noise called 'Choice'. Linux, as a self-defying entity (in the public imagination) cannot be summarised in the mind.

    Linux has a poor image precisely because it doesn't have one.

    It also needs to be said that Linux is fairly young, and so attempts at branding are even younger. Perhaps the weight of Novell can change that with a little constructive meme production. I disagree however OSX will have any real foothold, sitting at about 2.9% in desktop share it's as 'niche', or even more niche than that of Linux. OSX has a thick glass ceiling that Linux doesn't have, a brutal dependency: OSX requires not only a certain build, but a certain vendor of hardware. There is a reason we aren't seeing an uptake of OSX in offices and enterprise operations. This is one area Linux is making great headway.

    What will pull people over to Linux are Linux exclusive third party applications that lead people by the nose of their own creative and productive ambitions. And yes, I wouldn't discredit the possibility that proprietary apps could seed the swell of change in this regard. Imagine what a Final Cut Pro or powerful multi-track hard disk recorder (perhaps ) could do for the adoption of Linux in Universities for instance. It certainly worked for Linux in Hollywood. Naturally this requires alot of development capital ultimately justified against an isolated, and quantifiable target market. Linux users as it stands are certainly far from that. Chickens and eggs perhaps.

  133. Making the desktop obsolete by IGnatius+T+Foobar · · Score: 1

    Beating Windows on the desktop is a pretty tall order, mainly because it's so deeply entrenched (and perhaps the same reason why Microsoft hasn't been able to take the Internet away from unix and Linux). Linux will defeat Microsoft the same way Microsoft defeated IBM: by altering the technology marketplace so substantially that their monopoly market is no longer relevant (or at least no longer the dominant paradigm).

    If you buy a mainframe today, who do you buy it from? Chances are, it's IBM. IBM's grip on the mainframe market has never loosened. But most computing these days isn't done on mainframes. The same thing will happen to Microsoft. The conventional Pee Cee will become less and less relevant, as applications move back behind the glass so we can access them from any device anywhere in the world, be it a cell phone, a set-top box, a kiosk at the mall, or a conventional desktop (which may be nothing more than a thin terminal, if you're not a developer or power user).

    As the PC fades, Microsoft will fade with it. Linux has already established itself as the ideal infrastructure OS, and infrastructure is what it's all about in the coming generation.

    --
    Tired of FB/Google censorship? Visit UNCENSORED!
    1. Re:Making the desktop obsolete by djfray · · Score: 1

      you failed to mention that Microsoft and IBM are companies. Linux is not. point defeated

      --
      This sig is o Unfunny o Funny
  134. Why does Linux have to "kill" Windows? by mr_rattles · · Score: 1

    I see Linux (and any other operating system) as alternatives to Windows. I don't think Linux will ever kill Windows in the same way that Coca Cola will never kill Pepsi and Colgate will never kill Crest. Some people have preferences to one product over another while others use whatever suits them at the time. Sometimes what a person needs will push their decision towards one choice over another but I don't think Linus wrote the kernel with the idea of crushing Windows. It's simply competition and neither competitor will go away.

    1. Re:Why does Linux have to "kill" Windows? by mikera · · Score: 1

      Personally, I think that Linux could very easily "kill" Windows in the sense that windows becomes a marginal product with little relevence other than historical curiosity (Think OS/2, for example).

      If Linux acheives critical mass (i.e. significant size that *consumer* applicatrions are commonly produced for Linux as well as Windows) and Microsoft hasn't found another way by then to hold on to its monopoly power (e.g. by locking out competitors via patents or evolving the OS into a DRM protected managed service) then I predict that Windows will die pretty quickly.

      It boils down to the simple economic fact that Open Source is self-sustaining even if it is available for free (as in beer), proprietary software is not. Given a level playing field, free software is always going to win.

  135. Open Source forcing Microsoft to compete. by moojin · · Score: 1

    Although I wouldn't mind Open Source software, especially Linux, to dominate the world someday, I do not think it will happen anytime soon. The effects of Open Source software on MS business model can be plainly seen today.

    "Low cost" versions of MS Windows are being offered in several countries to compete against the rising tide of Linux. Even MS Office has had to compete against Star Office / OpenOffice. Although Java is not open source, it too has forced MS .Net to compete. The same can be said for Apache vs IIS, PHP vs ASP, Mozilla / FireFox vs IE, the list goes on and on.

    Open Source may not dominate the world in the near future, but it is forcing the largest software company to change its business model.

    Andrew

    --
    Why did I lurk so long before registering for a Slashdot account? I could have had a Slashdot ID of less than 100000.
  136. Microsoft's well-engineered products by Anonymous Coward · · Score: 0

    Despite your cynical view of MS products, they are well engineered.

    They just happen to have a target audience that is not technical.

    Windows has set the bar in usability for X86 based computers. (granted stolen from apple but...)

    Linux us great for what it does but it is not suited for the desktop market other then niche use for hobbyists.

    Windows was engineered to be easy to use for non computer literate people. That have achieved this goal. I think the market share speaks for itself.

    One of the things holding Linux back in general is the splintering in the distros. I can't install software for one distro on another distro without having some technical background. On windows, You put the CD, autorun starts the install, you blindly click yes a few times, and in a couple minutes you have an icon of your new program, game, whatever on your desktop. When linux can acomplish this maybe then I will get my grandmother to upgrade to it. Until then it is more hassle then reward.

    1. Re:Microsoft's well-engineered products by Peaker · · Score: 1

      One of the things holding Linux back in general is the splintering in the distros. I can't install software for one distro on another distro without having some technical background. On windows, You put the CD, autorun starts the install, you blindly click yes a few times, and in a couple minutes you have an icon of your new program, game, whatever on your desktop. When linux can acomplish this maybe then I will get my grandmother to upgrade to it. Until then it is more hassle then reward.

      As an argument for well engineering - it isn't so. A very badly engineered program can still have a decently engineered UI, which is what a lot of Microsoft applications are.

      As for your comparison of installations in Linux and Windows, its quite a bad example... When I can install any program I want by searching for it in my package manager, clicking on it and clicking install (getting the download and dependencies automatically) in Windows, tell me cause I've been doing that in Debian for years.

      In Windows, I need to have a CD, a direct URL or such to get an application, which means there's a different way to install every application. It also means I cannot upgrade all my apps automatically as I can with Debian.

      Then there's the issue of "This game requires Direct X 8, download it from ...". Unmet dependencies are also handled automatically by the "install" button in my package manager.

      So.. bad example.

    2. Re:Microsoft's well-engineered products by FidelCatsro · · Score: 1

      This is exactly why i switched to using Debian from using SuSE a few years ago on my desktop.
      apt-get repositorys may have some scalability issues , though it's the best package managment i have ever used and its a true plesure to have this type of usability at hand .
      Debian package managment is extremly solid (Respect also to gentoo based distros and the BSD world , i just prefer debian and apt) and windows can'nt hold a candle to it.
      its a matter of a few words typed into the term for me to upgrade my system or install new software , and if you dont know what you want exactly then you have the excelent synaptic to browse the repositorys from the comfert of a GUI with a nice search function.
      Microsoft may have some nicely engenieerd products that are a plesure to use (? examples please.. as I honestly couldnt call any of the ones i have used a plesure ) though compared to the ease of use and power i have with a debian base for my GNU software i really am not convinced about MSs superior useability .
      I use debian styled linux(ubuntu) and BSD on x86.. and linux and BSD(net and OS X) on ppc . I do occasionaly need to use computers with varying windows versions for work and it honestly does not hold a candle to OS X or debian to me on a desktop useability front , Fair enough some people prefer windows but honestly i cant see why (other than games)
      (This is my opinion ,nothing more)

      --
      The only things certain in war are Propaganda and Death. You can never be sure which is which though
    3. Re:Microsoft's well-engineered products by Anonymous Coward · · Score: 0

      You seemed to have missed the point.

      The iterations of windows that are common on the desktop are engineered to have a good UI, that is all. There are not engineered with security, stability, or anything else. That is why I claim they are engineered well. As the landscape of what they need to do changes they are slow at adapting but MS has and always will put novice usability in front of all else. Windows is designed for newbies and it works well in that regard.

      AS for your package manager example that is like comparing apples to oranges or more specifically apples to a very specific orange. The problem with the numerous distros of linux is the lack of consistency. You can do the apt-get thing in Debian but what about SUSE, what about Redhat, Ubuntu (sp?), Linspire, or one of the other hundreds of iteration that exist today.

      With windows, it is always the same thing when autorun is enabled (the default and still on for most users). It starts, you click OK a few times. It is done.

      Your DirectX example is just plain false. When was the last time you installed a windows game that required a specific version of DirectX that did not offer to install said version for you. Included on the CD.

      If you stop thinking of Windows as an OS designed for enthusiasts and start giving it credit where credit is due you may get rid of some of the common OSS bias. Windows was designed to make computers usable for the masses. It has succeeded.

    4. Re:Microsoft's well-engineered products by Peaker · · Score: 1

      The distribution stuff is silly

      Dont compare Linux with Windows cause Linux is just a kernel.

      Compare Debian to Windows and then you realize that there's no fragmentation at all and in fact Debian is far more consistent than Windows (who cares that there are other distributions? :P)

  137. Re:OS X and Java - HEY MODS GET A CLUE by bmw · · Score: 0, Offtopic

    Heh. I knew that post would got moderated into oblivion but it was definitely a serious comment. I'm not just some anti-java nut. There are applications I would love to use on a regular basis but because they are written in Java it's just too painful. This is a reality regardless of whether people who like Java want to admit it or not.

  138. Sigh, this is not the goal of Linux... by hacker · · Score: 2, Insightful
    Why is it that every time someone hears Linux, they immediately think "Hey, its an alternative OS, so their competition is Microsoft (or Apple), so they must be competing for the same space..."

    Linux does not exist to compete with Microsoft Windows . Repeat that to yourself 10 times over please.

    Many vendors who package Linux in various flavors are attempting to gain a larger userbase by making their version of the Linux operating system packaged with their components work better for end-users, but Linux was not created to supplant Microsoft Windows.

    I would venture to guess that a good 80% (a rectal approximation) of Linux developers and many users don't care how many Microsoft Windows machines Linux can replace. That's not the point. The point is to provide a Unix-like operating system for inexpensive hardware. It just so happens that Linux runs on something like 32 architectures, from embedded targets to PDA to 128-way (or more) CPU machines.

    Can Microsoft Windows run hardware in a 2-meg footprint? Linux can (and does, happily).

    Linux has already beaten Microsoft Windows if that is the metric that we're measuring it by.

    If you're measuring "sales" of Linux vs. sales of Microsoft Windows, of course Linux will not compare, because more people download Linux (and burn copies to give to dozens of their friends or hand out at LUGs) than those that purchase it in a boxed-copy with a printed manual.

    Linux will succeed, and already has far surpassed Windows in hardware, driver, and application numbers. Linux supports more chipsets, more peripherals, and more applications than Microsoft Windows itself. Sure, many of the applications aren't "pretty" or polished, but put a million dollars behind each project, and you'll see some major improvements.

    Does Microsoft Windows support that 10 year old video card in Windows 2003? Linux does.

    Since most developers aren't getting paid or funded (or supported by the vendor) for their applications, it evolves at the speed of their free time and motivation to improve it. "Pretty" interfaces are the last thing on a developer's mind. Fixing the last bug or adding the next feature are much more important than a graphical installer and a pretty icon.

    So we've already won, despite how the media likes to contort the matter.

    1. Re:Sigh, this is not the goal of Linux... by tshak · · Score: 1

      Linux does not exist to compete with Microsoft Windows .

      Techno-nerd semantics. The point being that Linux [Distributions] can't kill Windows.

      Linux will succeed, and already has far surpassed Windows in hardware, driver, and application numbers.
      No one is asserting that it isn't successful. Although the hardware, drivers, and application numbers are moot. Windows supports the hardware that most people care about. Linux eventually supports modern hardware, but is usually lacking in this area. (Note: "support" doesn't mean a bullet point on a Red Hat distro - it means rock solid stability and yes you get that with Windows far more often than not, please spare me your anecdotes).

      As far as application numbers, Apple's got their message right, "We don't have millions of applications, we have the right quality applications that you care about". So yes Linux has more applications than any other OS, and the vast majority of people can live without them.

      "Pretty" interfaces are the last thing on a developer's mind.

      As well as any other human centered factor when it comes to software. Linux developers generally seem to forget that humans were made for machines, not the other way around. At both Apple and Microsoft developers are probably the smallest group on a software team. There's a lot more to software than code. The only reason Linux has had any measurable uptake is because of the IBM's and Red Hat's who said, "Hey, we've got a bunch of overzealous nerds who will do the core work for FREE! Let's make money off of their backs and try to make this Linux thing into a real software product!"

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
    2. Re:Sigh, this is not the goal of Linux... by Vitriol+Angst · · Score: 1

      I think if anything will kill Windows, it is Windows.

      In my opinion, LINUX shines where you don't even see it. From a print server, to an ethernet hub, and embedded devices to a car DJ system, LINUX is great for people wanting to create inexpensive solutions that always work and where the cost of an OS may be more thant the cost of the device.

      Its flexibility and customization work for it for custom solutions. If it becomes the perfect Desktop, then that "Flavor" of Linux will probably lose its suitability for the device. Just as Windows and Mac OS are not good for devices.

      Personally, I would love to see more attention to multimedia support like flash, quicktime and Macromedia Director supporting Linux, and vendors selling more towards Kiosk solutions (I'm sure there are some, but none come to mind). A streamlined Linux would be better to deploy a kiosk and keep costs down.

      --
      >>"ad space available -- low rates!!!"
  139. Linux can't kill Windows by Intrigued · · Score: 1
    ...of course. And Windows will never kill Netware. And Word will never kill Word Perfect. And Explorer will never kill Netscape.

    These may be all on MS side but software revolution does take place. OpenOffice will take over MS Office before Linux takes over Windows, but the next phase always moves ahead. The question is... Can Linux muster up the next phase of development or will it just follow with free versions of proprietary software? Does it even want to? Is the OSS best served by making the current technology free and ubiquitious?

    1. Re:Linux can't kill Windows by Anonymous Coward · · Score: 0

      OpenOffice sucks.

      MS Office may be bloated and expensive, but no way in hell can the steaming pile of shit that OO is can ever replace Office in the workplace.

      Firefox is the only open source application that has a serious chance to defeat anything on the desktop. When my own mother finds out about it without me telling her and likes it, I call that success.

    2. Re: Linux Can't Kill Windows by Punboy · · Score: 1

      He said linux, not that Redshat mockery of Linux. :-p And yes, Fedora is still a Redhat thing. Its hosted by Redhat, started by Redhat, etc. And before someone yells at me for calling it Redshat, I only call it that because they kill KDE in every single release. But thats an entirely different discussion.

      --
      If you like what I've said here, and want to read more, go to http://www.krillrblog.com
    3. Re: Linux Can't Kill Windows by simscitizen · · Score: 1

      He's referring to the bug in the Fedora installer that erm, literally killed Windows.

    4. Re: Linux Can't Kill Windows by Punboy · · Score: 1

      Oh. Ok. Wow... thats sad.

      --
      If you like what I've said here, and want to read more, go to http://www.krillrblog.com
  140. What's really killing Windows by TVmisGuided · · Score: 1

    I think you're close, especially in the last part, but there are a couple of pieces of the puzzle that aren't quite fitting in.

    Commoditization of the core market isn't anything new. I'd be willing to say that MSFT made tremendous strides since the release of W3.1 in capturing the market share they did. Yes, they're struggling now to hold the market share they have, especially with Linux proving to be a more secure {server | router | firewall | etc. } when properly administered. This is mostly due to the glut of crackers and script kiddies who insist on attacking the most prominent target; it's likely that if OS/2 were the big player on the desktop market, they'd be attacking that instead of MSFT. A simple matter of "big targets make big noises when they crash." The remainder - fill in your own percentage - doesn't focus on MS products; it's bad system and network administration, no matter the OS or platform.

    IMHO MSFT is going to wind up collapsing under its own ponderous weight, between the continuing attacks of said crackers and script kiddies who keep finding more vulnerabilities to exploit, their ongoing legal woes in the EU, and their loss of market share elsewhere in the developing world. It may be Linux that fills the void; it may not. At this point, a timeline isn't very easily predicted, but based on what I'm seeing they're putting a great many of their eggs in the basket that is Longhorn. The next two years may well tell the tale, either of MSFT's recovery or ultimate downfall.

    Just my two cents' worth...save up the change for a root beer or something.

    --
    All the world's an analog stage, and digital circuits play only bit parts.
    1. Re:What's really killing Windows by ites · · Score: 1

      When MSFT released w3.1, it really was one of the better products on the market. Perhaps not technically the best, but together with tools like VB, it was a world-class product backed up by brutal tactics.

      But today the OS is a "solved problem", much like TCP/IP solved networking 20 years ago. Sure, vendors sold their proprietary stuff for a while longer but even IBM's mainframes are now TCP/IP.

      The EU Commission? Unlikely - MSTF 0wns them. The "Big Target" theory? No, not true. Apache is the principle web server in the world, and very complex, yet it's secure.

      Windows is insecure because of the way MSTF makes its software. (When I called their stuff well engineered, I was really not being 100% serious.) They build large monolithic systems that aim to provide a maximum of functionality to beat off rivals and lock in customers. It's good business in the short-medium term but it's poor engineering in the long term, and we're now at the stage where it's starting to crack.

      MSFT can't produce Longhorn-sized projects on time any longer because they have lost control of the process. Software is notoriously tricky stuff, and it looks like the FOSS approach is one of the few models with long-term viability.

      I don't think MSFT will die, of course, but I really, really hope for their sake that they have an alternative than simply to push the "Linux is not a product" line and try to "attack" Linux with patents or whatever, instead of understanding that the nature of world they grew up in has changed and will never be the same again.

      Really, there is only one way MSFT can still be alive in 20 years from now, and that is if they embrace commodity software - Linux if you will - fully, and use it to their advantage instead of fighting it.

      You cannot stop the rising sea. Kings have tried, in full regalia, and failed.

      --
      Sig for sale or rent. One previous user. Inquire within.
    2. Re:What's really killing Windows by TVmisGuided · · Score: 1

      Just a couple of nits I want to pick, even though I'm very much in agreement with you.

      I don't even look at the timelines for major MSFT projects like Longhorn, because MSFT has fallen prey to the dubious wonders of feature creep and similar development problems. As you say, they've lost control of the process. I'm described as a "competent user" by some, and I'm on the educational path to becoming a developer, so I'm familiar with such problems in the development process. Meanwhile, I look at the end result, not the predictions (including time) for the release. I had to be dragged kicking and screaming away from W3.1, because it was a solid, functional GUI. In the Commodore days (remember those?), I was a die-hard GEOS fan, even with the minor irritation of the disks locking themselves to the hardware (which made it all but inoperable if I had to replace a failed drive or something). I like using Linux on my play box at home just to try and learn what I can do with it that can't be done cheaply on my MSFT box (Octave and gnuplot saved my bacon on a class project twice...I don't want to know what I would have shelled out for a full copy of Matlab or Mathematica).

      I think what it's really going to boil down to is a) who can deliver what the user wants and b) how steep the learning curve is. Marketroid-babble notwithstanding, MSFT's products are very popular because they were originally designed for managers, not techies. They provided a reasonably simple and easy-to-learn GUI and hid all the compu-arcana behind the curtain. Linux can do exactly the same under X and a good WM, but some of the more powerful tools still require CLI usage. That might be why Linux, taken colloquially as a full OS package, is slow to gain general-public acceptance.

      Again, this is just my two cents' worth (and I'm still waiting for my morning cuppa to kick in). Let me know how much change is due, and I'll credit someone's karma account accordingly.

      --
      All the world's an analog stage, and digital circuits play only bit parts.
  141. Is this a randomly generated article? by CdXiminez · · Score: 0

    Hmm, I have the distinct impression that this author has read yesterday's article and used the Automatic CS Paper Generator to produce this article.

    It has the same superficial flow of words, non-statements and not-touching-the-point style as the examples it generated for me.

    1. Re:Is this a randomly generated article? by belg4mit · · Score: 1
      --
      Were that I say, pancakes?
    2. Re:Is this a randomly generated article? by CdXiminez · · Score: 1

      That article you refer to, describes _exactly_ the kind of feeling texts like this article give me. And which is so well parodied in the Paper Generator.

      So I got modded 'Overrated', which I somehow agree with :-)
      But your comment, Sir, needs several modpoints of Insightful!

  142. The author is pre-empting the "Linux Question" by Infonaut · · Score: 1
    His next column is obviously going to be about how:

    There is only one platform that can stand toe-to-toe with Windows, and that's the combination of OS X and Java.

    So he's generating buzz and dealing (he thinks) with the questions about Linux that will invariably surface when he discusses OS X and Java as competition for Windows.

    He's making the summary judgement about Linux primarily so he can advance his case that OS X combined with Java is the only "real" way to get past Windows. I don't agree with his assessment of Linux, but he's obviously doing this in preparation for a (hopefully) meatier argument about OS X + Java.

    --
    Read the EFF's Fair Use FAQ
    1. Re:The author is pre-empting the "Linux Question" by MikeBabcock · · Score: 1

      The one thing both MS and Apple have over we Linux people is the time and energy they put into development tools for the masses. MSDN is an excellent resource, despite being full of BS half the time. Apple has huge documents outlining usability and great dev tools in many cases. Visual Studio is unmatched on Linux (yes, I've used the Linux IDEs).

      I love flexibility, but if we want developers (like my boss), we need to entice them with "cool" development platforms.

      I love Makefiles and gcc ... they work wonderfully. That said, my boss loves clicking "build and run" on VS.

      --
      - Michael T. Babcock (Yes, I blog)
  143. He's got it backwards by Anonymous Coward · · Score: 0

    It's "Windows Can't Kill Linux". Because, as we've said before, linux does not require XXX profits > YYY expenses to survive. OTOH, if microsoft's profits aren't enough to pay all the empolyees, microsoft will die.

  144. Anti-trust and bundling. by PhYrE2k2 · · Score: 2

    Oooh- and then we can get mad at the OS and make them remove all of those components.

    But realistically, that's what Linux is. A base install of RedHat will give you everything from graphics libraries, to video codecs, to a word processor, to a spreadsheet.

    As with windows, for better versions (OpenOffice, etc) you start buying/downloading.

    How is Windows better? If anything Linux has more applications put there by the vendor

    -M

    --

    when you see the word 'Linux', drink!
    1. Re:Anti-trust and bundling. by joshmccormack · · Score: 1

      I think it's all about what you can be sure is going to give you baseline results and not get you canned or hated.

      From the business perspective, deciding to roll out Linux to everyone instead of Windows will save you a boatload of cash upfront. Then you'll get resistance all over the place, tech support will try to bleed money out of you and complain, lazy people will moan and complain. There's a possibility of success, but a high chance of failure. Tenure at a company is generally not earned for dynamic thinking, but for not screwing up.

      For the home user, you set up Linux for your wife and kids or parents or whoever, and you get to the be the 24/7 tech support guy. They won't be able to do and see everything their friends and family send them, they'll be questioned and ridiculed by their clueless friends, and you'll have to explain to them why they can't play their games properly.

      So is Windows the best? Doesn't matter. It's what almost everyone uses, and if you buy computer equipment or software you can be nearly guaranteed it will work on a Windows machine. If you get a file or see a website, it will almost certainly work with Windows.

  145. Open Source is the platform and the way by gilesjuk · · Score: 1

    Open Source development is the platform and the way of life. So who cares if it's not Linux that kills Windows.

    Empires rarely last and Microsoft's problem is it's reliance on the money from Windows and Office. Both products are seriously overpriced and people are taking notice.

    1. Re:Open Source is the platform and the way by uohcicds · · Score: 2, Insightful

      This is certainly true. However, we must also look at the fact that in any market, it's rarely the best (whatever we define that to mean) product that ends up the most dominant. Just look at motor vehicles, food, music and entertainment for examples. In some cases there is a price issue to look at, in others not.

      Microsoft have designed a system that the mass market is comfortable with (whether those of us use other systems like it or not). People are now starting to see that there are alternatives, whether from the Open Sector or from places like Apple. Their behaviour may change over time, but if any change happens it will not do so overnight.

      Windows is the white sliced bread of computing: adequate but not wonderful; filling but not necessarily the most nutritious of choices. We also have to accept that in some cases, that is all people want. I think that is perhaps what the orignal author's thrust was, judging by the article, even though he could have been a little less peevish in saying so.

      PS: I'm a heavy user of XP, Mac OS X and Fedora

      --
      It's not you: I'm just this horrifically socially awkward with everybody.
  146. Re:OS X and Java - HEY MODS GET A CLUE by Anonymous Coward · · Score: 0

    Heh. I knew that post would got moderated into oblivion but it was definitely a serious comment. I'm not just some anti-java nut.

    Well, when you go on spouting some ignorant shit of course you are going to get modded down.

    I can understand your complaint, but it is more likely that you have not used quality Java apps, and you certainly have not actually done any development in Java. With modern tools and techniques, Java apps perform perfectly well.

  147. Customer does't know what a platform is? Use Linux by Anonymous Coward · · Score: 0

    A great deal of users don't even want to edit documents, let alone use a computer to do their taxes, manage their calendar, etc. They just want email and web browsing. I put Linux on a brand-x machine, set up their Internet account, show them how to use Firefox/Thunderbird, a leave them happily surfing, virus free. Maybe they'll discover Open Office on their own.

    In the author's sense of the word, they don't have much of a "platform" because they don't install their own applications. (I don't usually install apps either, I just install the distro. Easy.) So Linux may not be much of a "platform", and may not push Windows out of businesses, but there are plenty of Linux users and will be plenty more, which is more relevant than the author's point IMHO.

  148. Unless Microsoft write their own version! by DaRanged · · Score: 1

    Would Microsoft ever consider writing their own version of Linux? If not for anything other than to inflict damage to the open source market?

    Would existing MS Windows customers with Unix business environments move to MS Linux if it was available?

    Juss throwing a spanner in the works here ;-)

  149. Of course not! by Njall · · Score: 1

    There are still AOL users who need an OS to run their software on. Duh!

  150. Linux Doesn't Kill Windows by lbmouse · · Score: 0

    Linux doesn't kill Windows,
    Windows kills Windows.

  151. Linux cant kill Windows, wRapper do. :) by zenst · · Score: 0

    My the Wine'ing continue :).

  152. Yes, Linux can't kill windows by Anonymous Coward · · Score: 0

    But, it can bitch slap it.

    Java running only on OSX defeats Java's only one good feature, cross platform support. If your not worried about cross platform then it doesn't make sense to use Java, you use native binaries instead.

    As far as Windows goes. If the author is satisfied that he has no other choices other than what Microsoft gives him, more power to him.

    I like the fact that allows me to choose what gets run on my hardware.

  153. No way by Mr.+Underbridge · · Score: 2, Funny
    Doesn't this article give the feeling the author has no clue about what he is talking about and has just put together some buzzwords like scalable, self-contained to create a controversial article?

    No, the problem is that you aren't being sufficiently proactive in shifting your paradigm to thinking outside the box like the author clearly has. What does scalability mean? I don't know, but I saw an IBM commercial about it during the Super Bowl, so I figure that qualifies me to write an article about it.

  154. Major weakness of linux by The+Slashdolt · · Score: 1

    The major weakness of linux is, and will continue to be, marketing. Linux is driven by technical issues first. What "the market" wants does not play a major role in the development of linux. In fact, "the market" for linux has never been properly defined. Therefore the current market for linux, by its direction, is those people who care about technical issues over all others. Sadly, the majority of computer users do not place technical superiority first, at least not at this point in personal computing.

    Microsoft did not get to its current state by producing superior software. It got to this current state by superior marketing, and ruthless business practices.

    By using "Linux" in the above statements I am referring to the number of linux distributions, not the kernel proper. This is probably a branding issue. Another part of marketing.

    --
    mp3's are only for those with bad memories
  155. I love this by MasTRE · · Score: 0, Offtopic

    April 14, 8:49AM: Linux: Linux Can't Kill Windows
    April 14, 8:00AM: Adobe Releases Acrobat Client for Linux

    =>8-D

    --
    Must-not-watch TV!
  156. Unjustified statements by mnmn · · Score: 1

    Cant make a brand name even if you package it and slap a pricey sticker?

    Arent suse and redhat doing that and succeeding at it?

    At work we handle ~70 computers, and will switch to linux if it werent for the binary apps we depend on. The binary market is slowly increasing for linux, so all those points are invalid.

    And why cant you make a brand name with a pricey sticker? Why cant you make a consistent look and feel? Apple did that with FreeBSD, and there are plenty of linux companies out there...

    No justification given for that statement...

    --
    "Give orange me give eat orange me eat orange give me eat orange give me you." -Nim Chimpsky
  157. It doesn't have to! by RetiredMidn · · Score: 1
    First, disclaimers: I'm a Mac fanboy since 1983 (not a typo), worked extensively and deeply with PC-DOS, hate Windows with a passion, and currently use Linux at work. Although I tend to disagree with the article's position, I think it's unimportant.

    First, Windows is probably too entrenched to go away, simply because of all the investment in applications that depend on it. IMHO, OS X is better in nearly all respects, and Linux is better in many, but there are many people -- even competent ones ;-) -- who use Windows to get their job done and believe it's what works best for them.

    But the persistence of OS X and the aggressive improvement of Linux have all but succeeded in preventing the Microsoft monoculture from taking root; well, not from taking root, but from being the weed that kills off everything else. Take the small example of the browser space; there are fewer and fewer sites (that matter) that have backed off dependence on IE and embraced Firefox, Safari, et. al., by embracing more non-proprietary standards. The world is getting used to working in a heterogeneous environment, and that makes it a safer place to nurture the alternatives.

    Linux (and OS X) could grow robustly for years and not push Windows into the minority, but, frankly, I don't care! I am way less marginalized as a non-Windows user than I was, say, five years ago, and I think it's past the point where Microsoft has the ability to change that.

    Having said all that, it's not clear to me that Microsoft doesn't have the potential to contribute to its own unravelling and expedite even greater changes. Also, I look forward with some curiosity to Tom Yager's promised opinion on why he thinks OS X & Java have better potential to beat Windows (not that I'm arguing).

  158. My 2 cents by ch-chuck · · Score: 1

    Gee - every Linux install I have just runs and runs as programmed with no suprises. Like two daily use notebooks - just turn them on and get to work. Then I hear so much about virus, trojans, spyware, patches, security alearts etc. Anytime I turn on the Kim Komando show on the radio it's all about Windows and the program is 75% virus, worms, warnings, problems, security alerts, trojans, etc.

    --
    try { do() || do_not(); } catch (JediException err) { yoda(err); }
  159. And they're right... by IdJit · · Score: 1

    While the Linux desktop continues to evolve, piggybacking numerous different window manager systems, and still requiring some conf file hacking to get some things to work properly, Linux just can't kill Windows as a desktop environment.

    As an OS, Linux has Windows beat by a mile in the areas of stability, security, and scalability. But "Linux the Desktop" still has a way to go to win over the average user.

    Sure, KDE and Gnome are similar enough to the basic MS Windows GUI, but throw in things like package dependencies and kernel version compatibilities, and and your average MS-loving user will get confused, frustrated, and eventually give up.

    Don't get me wrong...I personally love the Linux desktop and use it every day, but it's just not at a good 'ease of use' level for most average PC users.

  160. The spectrum by Corpus_Callosum · · Score: 1
    To most end users, a consistent look and feel, that works right out of the box, is really important. So it's a very good thing that Linux distributions are improving in this area (which the article conveniently forgets to mention).
    On one side of the spectrum is "OS X". Out of the box it slides onto your screen, seductively handing you delicious candy that works well, works smoothly and never asks any questions you can't answer.

    In the middle is Windows. It crashes onto the scene, a little uncomfortably... It asks a lot of questions that have no answers. It yaps and bitches.. It falls apart and stops working. It misbehaves. But it does so consistently.

    On the far side is Linux. The entry is... legion... It depends... It might come to you smooth and seductively like "OS X" or rocky and without mercy in the form of bash... There is no consistency, no predictability to the way it will treat you. It is at the same time smug, sophisticated, aloof, unreachable and yet completely at your mercy and transparent... It is too many things for too many people...

    In the end, Linux will win. There can be no doubt about this for one simple reason, "Linux will always exist and always be there to improve".

    However, there is no "linux" in "linux"... This is a problem. Sometimes, having a tyrant (e.g. Gates, Jobs, ...) can force things to take a stand, good bad or otherwise. Who will be the linux tyrant?

    Just some tired rambling... Hope you guys don't think I'm trolling... I really wonder what should be done.
    --
    The reason that it can be true that 1+1 > 2 is that very peculiar nonzero value of the + operator
  161. Me thinks ye hasn by big-giant-head · · Score: 1

    "a consistent, well documented, and long-supported API"

    --

    So Long and Thanks for all the Fish.
  162. Lack of unity will kill Linux by kin_korn_karn · · Score: 1

    It's not just the lack of apps that keep people from using Linux on the desktop, it's the fragmentation of the community and the fact that Linux itself isn't even a clearly defined concept.

    Is Linux just the kernel? A kernel is of no use without an environment that uses it. So then we have distros. Dozens of them. All with different software packages and GUIs. RedHat became a de facto standard for a while, then they shot themselves in the foot.

    So then, is Linux a distro? Not according to the people that are responsible for it. They say it's just the kernel. This confuses IT managers, who then say "fuck it, buy Windows until they make up their mind." They might know that Linux is better internally, but they have bosses that don't want to hear stuff like "I'm rolling out something to 5,000 users that I can't even describe properly."

    The OSS lack-of-business model breaks down here. This is why Linux on the desktop will never be successful unless someone completely commercializes it.

  163. The 'community' is fighting the wrong battle... by Nijika · · Score: 1
    A lot of people are focused on making Linux the best Windows replacement it can be, and this is horribly wrong! All we do is complain about how bad Windows is, and there are huge efforts underway to emulate it.

    It's like, "this sucks, let's copy it!"

    The 'community' itself should be focused on pushing usability forward. The technical excellence is there, what is needed is people working on making things on the front end better so that it attracts the normal people who just want to do every day tasks in a fun, usable, and attractive environment. That doesn't, by any stretch of the imagination, mean ripping off the ungodly Windows UI.

    Spending 10+ years working on an alternative operating system, just to slap a f***ing start menu on the user interface so that you can claim it's just as good as Windows, is goofy. Sun has made this mistake, and so have most frontends under Linux.

    So the community shouldn't be trying to kill Windows, it should be ignoring the Windows UI entirely and focusing on good interface practices instead. People are quicker to adapt than we give them credit for.

    --
    Luck favors the prepared, darling.
    1. Re:The 'community' is fighting the wrong battle... by __aamcgs2220 · · Score: 2, Interesting

      I think you're on the right track here, but look forward a little further. Where has Linux been? It's been a hobby OS with a single programmer, then a complicated but efficient hobbyist server with hundreds of developers, then a reasonably solid but still overly complicated server and desktop OS with thousands of developers, now an enterprise-class OS with big corporate development and support and millions of other developers. It's evolving, and at a much faster pace than Windows. The community has to play catch up for a while just to get to the same level as the marketing folks in Redmond and to be able to say to the world "Hey look at us, the transition is easy and we're getting better all the time." We're still in catch-up mode, but we're not far behind, and the momentum is still building steadily. Once we get to that point, the innovation will continue because critical mass has been reached, and then you'll see things heading in the direction you're hoping to see. Interfaces will be improved, services will evolve, and Linux will hit its heyday. Don't give up! Join the fight. The best is yet to come. Seventy or eighty years ago, the author of this article would probably have said something like "There will never be a need for more than 11 computers in the world." His statement is inflammatory because it makes people click on the link and increases advertising dollars. Don't equate fame with insightfulness or intelligence because you won't find either from that guy.

  164. Predictable, scalable by hey! · · Score: 1

    Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions.

    Dear Mr. Windows

    Thank you for your application for the position Enterprise Do Everything Software Platform.

    We regret that we are unable to futher consider your application for the following reasons:

    [ ] Doesn't scale down to mobile platforms.
    [ ] Not usable as Desktop OS.
    [ ] No Support for low end servers.
    [ ] No Support mid range servers.
    [*] No Support for high end servers.
    [*] No Support mainframe class machines.
    [*] Poor Standards Compliance.
    [ ] Lack of Mindshare
    [*] Vendor lock-in
    [ ] Cost.
    [*] Security.
    [ ] Stability

    Once again we thank you four your interest in the EDESP position, and regret that the position does not match your skills at this time.

    Sincerely,

    The Enterpise

    --
    Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
  165. Re:OS X and Java - HEY MODS GET A CLUE by bmw · · Score: 0, Offtopic

    I can understand your complaint, but it is more likely that you have not used quality Java apps

    I'm afraid this is not the case at all. EVERY java app I've used runs painfully slow and uses a ridiculous amount of resources for what it does. I don't care how badly something was written it should not perform this badly. There's a lot of software out there that is poorly written and none of it comes anywhere near the shabby performance that I see with ALL java apps.

  166. It All Depends on Your Audience by eno2001 · · Score: 1

    Microsoft will never put a dent in the audience of people made up of people like me.

    I'm not your average user or admin. I'm an artist first and a computer guy second. Therefore, I need maximum flexibility in the tools that I use. Microsoft Windows cannot provide this because until recently, they've ignored the art community and instead focused solely on business. They've also ignored the needs of people who want to do more with their computer than just buy software and install it. Some people try to belittle this audience as "computer hobbiest" and relegate them to a very small group who do little to further technology. But the, so called, hobbiests are the people who cause technology revolutions. Steve Wozniak did it with the Apple Computer. Linus Torvalds with the Linux kernel. And people like Adam Curry with iPodder.

    Microsoft and it's supporters make the mistake of thinking that people like us aren't worth supporting by making a truly flexible and hackable OS + applications. The most important people in technology are the tweakers. The people who will take something apart and rebuild it so it's faster, better or just more fun. Microsoft doesn't allow for that and has therefore lost me as a customer/user. And even when I did use Windows full time all I ever did was gripe about how much it sucked and prevented me from doing what I wanted to do. Linux changed all that. :)

    --
    -"...bad old ideas look confusingly fresh when they are packaged as technology" - Jaron Lanier (Digital Maoism on Edge.o
  167. An e-mail that I sent in reply that that article by jwd-oh · · Score: 1

    Linux can't kill Windows. Just like Ford can't kill GM. That has
    never been the point. Your article seems to have missed the point.
    There have been a very few "sea change" events in computing. Some of
    them are:

    1) The PC (Macs, too) brought computer out of the "glass house".

    2) TCP/IP standardized computer to computer communications. No more
    closed protocols

    3) Dell forced PC manufacturers to compete on price using commodity
    components. No more can someone say my PC is better than yours cause I
    use the cool custom thing inside it.

    4) Linux has emerged as a way of providing enterprise class OS and
    applications on nearly every piece of hardware (from those commodity
    PCs on up). No longer can iron vendors use the "My *NIX is better
    than yours" to sell hardware. In fact, for most "iron" vendors their
    efforts in maintaining the custom version of *NIX cost them money. The
    customers want interoperability. Linux (and the many BSD variants) are
    providing that interoperability. Vendors only have to deal with
    writing "device drivers" for their specific hardware things.

    Windows was never meant for anything other than the x86 space (for a
    while it was on Alpha) and for a while Itanium. Linux runs on all
    those and much more. So while Linux might not kill Windows, Linux will
    be everywhere Windows is not and many places where Windows is today.

  168. its true.. and I hate to admit. by Hohlraum · · Score: 1

    I use linux 40hrs a week as my work desktop. I boot into windows about once in a blue moon on the same machine (came with the machine). Its amazing how much more responsive and solid windows xp feels compared to my Ubuntu and FC3 desktops.

    One day linux will have an amazing desktop environment but its not even close right now.

  169. So what? by Beolach · · Score: 4, Insightful

    You know, I honestly don't care if this is true or not. So what if Linux can't kill Windows? Windows can't kill Linux, that I'm positive of. And that's really all I care about. Sure it'd be nice if enough people abandoned Windows in favor of Linux to "kill" Windows, but whether that happens or not, I can still use Linux to my hearts content. If other people continue to use & support Microsoft, that's up to them, and while it will have some effect on me, I doubt it will be a significant enough effect for me to really care.

    --
    Join moola.com, play games to earn money.
  170. A little history... by H0ek · · Score: 5, Insightful

    1991 : Linux? A plaything for college students. It'll never work like *real* Unix.
    1996 : Linux? So it makes a simple web server. It'll never scale as an enterprise server.
    2001 : Linux? Yeah, it's nice for my enterprise servers, but it'll never give end-users any satisfaction.
    2005 : Linux? So hackers have pretty desktop. Didja see the effort they had to go to make it work? It'll never be easy enough for our secretary Jane Typist.

    Nope, Linux will never compete. Not even that Novell Linux Desktop that has proliferated our workplace and made every desktop look the same (but secure). It'll never happen.

    --
    H0ek
    Think you're smart? Prove you've got brains!
    1. Re:A little history... by Anonymous Coward · · Score: 0

      Of course, the typically blind linux fatty has forgotten to take into account that by the time linux becomes easy enough to use, windows will have already surpassed it in that area 100 times over.

    2. Re:A little history... by kansei · · Score: 1
      One big roadblock is creating a complete Linux build and a migration plan away from Windows. How do you keep the migrated people still interacting with the non-migrated people? Once you've migrated one person, you will need to support both platforms as well as support the interaction of the two. What about the custom apps? It is concievable that if you start from scratch you can grow into a Linux environment. If you are migrating to a Linux environment, the development costs alone could be very high unless you are running plain office apps and nothing else.

      Examples of possible roadblocks:

      - a user has a vendor-provided Excel add-in that scrapes data from an external source and adds it to his spreadsheet. The add-in is not available for the Linux equivalent of Excel.

      - a user has a Blackberry that needs to be synchronized with the Linux equivalent of Outlook and have her emails forwarded to the device. On Exchange, the BES server takes care of the email forwarding. On Linux - ?

      - there are a dozen Access databases being used for different purposes which will need to be rewritten for the Linux equivalent of Access

      - there are 50 templates in Word and Excel, some with ties to websites and databases which will need to be rewritten.

    3. Re:A little history... by Ahnteis · · Score: 1

      Of course, the typically blind linux fatty has forgotten to take into account that by the time linux becomes easy enough to use, windows will have already surpassed it in that area 100 times over.

      A good point, poorly made.
      I'm a pretty geeky guy by most standards (ask my friends) but for me, 90% of the people I know, linux just won't cut it for day-to-day use.

      The first analogy that came to mind is that of MythTV vs Tivo. Sure, MythTV is great for a small group of people (most of whom post on /.) but for the majority--nope. Not ready. Fortunately, the linux vs windows situation isn't quite as bad as that, but the comparison does provide a valid starting point.

      Linux has a lot of geeks who are, no doubt, fantastically smart at collaborating to create and improve an OS. Unfortunately, linux is far to splintered currently to become a major desktop presence in anything but a highly regulated environment.

      How many windowing systems? How many "standard" file locations?

      Large corporations developing unified versions of linux are a start, but there's still a long way to go.

      Meanwhile, Windows IS getting better and better. I don't care if you hate it, but ignoring Widnows will lead to continuing marginalization of linux.

      Sadly, the current trend seems to be making the UI **as good** as windows. Making software installation **as easy** as windows. Playing continual catch up just means you'll never be in the lead.

    4. Re:A little history... by comgen · · Score: 1

      Before Windows there was DOS a simple command line, users back then could start apps and/or generate their own custom menus. Jane in the office could start word-perfect, Bob the accountant could open and work in Lotus with out problems, might I add both Jane and Bob could manage to reset the dot-matrix printer and load paper. Users back before windows could do quite a bit more than they can do today 'and all from the command line'. Windows made people lazy, a single 'shortcut' took away that knowledge they once had of the command line and configuration files. I'm not sure what happened or when but once the GUI 'Windows' hit the market, the same users that could do for themselves 'or with little support' can no longer handle simple tasks. When I started out in the Tech business, calls were about hardware issues, OS2, DOS driver problems, jumper on a modem or Hard Drive needed some tweaking...even then the user had already tried the most common solutions 'without much thought'. Skip to present day, 'I repeat...users are lazy', today most of the call I receive are non-technical, Jane has an Icon that Bob doesn't have on his desktop, How do I change my desktop back ground, create a shortcut, software installer is asking me if I want to install to 'X-location...is that OK?, OH and "I just bought my PC two weeks ago and it is now SLOW" Yeah welcome to Windows worms, virus, spy ware etc.... Will Linux take over Windows? who really cares, when I say this I mean, who in linux community will benefit from a complete or at least major market share takeover? No one really owns Linux its a community effort with many solutions and flavors. As a user of Linux/BSD do I really want my OS to become mainstream? with all of the trouble 'extras' that come with owning a Windows machine? Virus,spy-ware etc are not far from hitting the Linux OS or at least becoming more widespread then it is already, do I want that to escalate? Just to knock M$ off the hill? To be selfish, if it was not for Microsoft and all the problems that plague it, I would be out of business! I think if anything I would like to see that 'common knowledge' of the operating system come back if not anything else. Linux in its current state could do this, but again 'users are lazy'. Linux can be just as eye candy enabled as Windows, it provides the same level of 'productivity' tools as Windows, if not more and its free 'to a certain' degree. It still requires the user to read, learn and understand their tool(s), (OS, Computer). That will not happen any time soon. On a side note, I would like to address the virus, spy-ware issue....one service call out to fix and clean a system is fine, another call to fix, clean the same system after explaining and providing tools...fine too, another call to fix, clean and re-explain to the same user is 'TechAbuse', in cases like this I would like to see a national 'DMV' of Computer owners or since we must register and pass training to own guns, maybe something similar. Even though an infected machine 'Windows' doesn't affect me directly (productivity of daily business), it does to a degree slow down my email or my really important new-group feeds, not to mention the flood of Mass-email from un-patched dialup Windows XP users...........

      --
      -- Best regards
  171. Re:OS X and Java - HEY MODS GET A CLUE by toolshed7 · · Score: 1

    All java apps. You are just flaming....the only thing you are serious about is being flamebait.

    --


    Deserving got nothing to do with it.....shuffle
  172. It's happening...again... by Anonymous Coward · · Score: 1, Funny

    Windows was never going to kill DOS because DOS had all these applications and people already knew how to use them. In addition, users had to use different software and buy one of those mouse things that only Apple users cared about.

    So, Windows will never kill DOS. It may gain a small market share of techno-geeks that just like playing with the newest toys, but, the majority of the market will stay with what they already know.

    Oh, wait...

    1. Re:It's happening...again... by ivoras · · Score: 1

      Except that Windows introduced substantially better functionality, user interface for example, and 32 bit support (in winNT or win95, depends on your standpoint :) ). What important news does Linux intrododuce?

      --
      -- Sig down
  173. Windows may always exist... by rnturn · · Score: 1

    ... just like the few critters that the strongest antibiotics are unable to kill.

    I'm not sure what the point of the author was. I don't recall that Linus ever seriously said anything about killing off Windows being a goal of his. My goal is rather modest: to use "Software That Doesn't Suck®" (my thanks to whoever first coined that phrase). I think that's what most people want.

    --
    CUR ALLOC 20195.....5804M
    1. Re:Windows may always exist... by Vitriol+Angst · · Score: 1

      "Software That Doesn't Suck®" is actually a registered trademark of the Macintosh text editor swiss army knife for programmers called "BBEdit", by Bare Bones Software. You can see their slogan in all it's glory here. The slogan is now It doesn't suck.®. but I prefer their former slogan "Software That Doesn't Suck®".

      I always thought their company kind of hip. By the way, their apps generally don't suck.

      --
      >>"ad space available -- low rates!!!"
  174. Linux is a Kernel and nothing more. by Anonymous Coward · · Score: 0

    >...There is not even a single definition of what "Linux" is, except a bunch of software running on top of a specific kernel.

    1. Re:Linux is a Kernel and nothing more. by ites · · Score: 1

      From linux.org:

      Linux is a free Unix-type operating system originally created by Linus Torvalds with the assistance of developers around the world.

      From linux.com:

      Linux is an operating system.

      From wikipedia:

      The term Linux strictly refers to the Linux kernel, but is commonly used to describe entire Unix-like operating systems (also known as GNU/Linux) that are based on the Linux kernel combined with libraries and tools from the GNU project. Linux distributions often bundle large quantities of software with the core system.

      --
      Sig for sale or rent. One previous user. Inquire within.
  175. it's all about cross-platform apps by radarsat1 · · Score: 3, Insightful

    I think what's needed is a good bridge between the two operating systems. You can get people to walk over to the dark side (mouahahaha) without giving them a bridge. The bridge between Windows and Linux is cross-platform apps, like Firefox and OpenOffice. Get everyone using these apps, and then point out to them that "hey, you could actually use the exact same apps on linux, why are you paying for windows?"

    You have to take things one step at a time. First the apps, then the operating system. Change everything at once and it won't work.

    I've gotten a couple of people using Firefox, and .. like... ONE person using OpenOffice. Since everything's working fine they have no need to switch OS, but if their Windows installations ever got totally bunged, I might suggest Linux.. and since they're already using these apps, I think they might be more open to it. Of course, they're using Firefox now so spyware isn't much of a problem for them... so the chances of them needed to switch OS is down about 90%... ah the irony..

    1. Re:it's all about cross-platform apps by silicon+not+in+the+v · · Score: 1
      The bridge between Windows and Linux is cross-platform apps, like Firefox and OpenOffice. Get everyone using these apps, and then point out to them that "hey, you could actually use the exact same apps on linux, why are you paying for windows?"
      You could go a different route and it's almost transparent to switch. At my company, we're switching out a lot of people's systems to Red Hat with Crossover Office, so they continue to use Outlook and the other MS Office apps. So now instead of paying for Windows and Office, we're just paying for Office. We may continue to push toward phasing out the Office part too, but for now, that's the easy switch.
      --
      We may experience some slight turbulence and then...explode. -Capt. Mal Reynolds
  176. Re:Mindset in cement, you mean by Anonymous Coward · · Score: 0

    the reason I gave up Windows on the desktop and in the server room, was stability, reliability and security.

    If you thinks windows beats Linux in any of these areas. you are NOT a geek. You're a 17 year old.
    If your not 17, then you arestuck in a 17 year old (or younger) way of thinking about the world.

  177. Re:If you want to RTFA, but give no ad click bonus by -dhan-101 · · Score: 1

    well, at least it's properly labelled as an "ADVERTISMENT" ;)

  178. Shouldn't Linux have a library-app manager? by tentimestwenty · · Score: 1

    I've never used Linux past installing it and booting to the desktop so I'm no expert, but if it's as you describe, shouldn't there be a central library manager?

    If everyone has different libraries installed in different places, the OS should have a central manager to search for and keep track of what is where. Then, apps should make calls to the manager when they need a library and the manager returns the location and configuration. Developers could then build for redundancy so if library B exists instead of library A it could adapt, download the right library or quit gracefully.

    You could still have as many libraries as you want, just as say Quicktime has tons of codecs, it would just be organized so that the middle-app would liaise betwen library and app.

    1. Re:Shouldn't Linux have a library-app manager? by TheRaven64 · · Score: 1

      There is such a thing. In fact, this being open source, there are lots of things like this. More or less one for each distro, in fact. Which brings us right back to where we started...

      --
      I am TheRaven on Soylent News
    2. Re:Shouldn't Linux have a library-app manager? by tentimestwenty · · Score: 1

      I should have guessed. At some point there's going to have to be a dominant one chosen. When will Linus put his weight behind something like this. Certainly overall it would be a benefit to the developer community. There could still be competing systems vying for the throne, but you've got to start with something.

    3. Re:Shouldn't Linux have a library-app manager? by 0racle · · Score: 2, Insightful

      Linus creates a kernel, nothing more. Package management is the responsibility of the distro.

      --
      "I use a Mac because I'm just better than you are."
    4. Re:Shouldn't Linux have a library-app manager? by spitefulcrow · · Score: 1

      This is called a dynamic linker and a package management system. ;) Examples would be the standard GNU/Linux dynamic linking program (its name escapes me at the moment) and systems like APT, Portage, and RPM. If you build redundant support for multiple libraries into a program, it'd quickly become very large in terms of binary and source, and the source would be extremely difficult to manage. Take the example of graphics libraries: you have the major choice of rolling your own or using a prewritten library, and then if you use one that someone else has written you have Qt or GTK+ (there are others, like Motif, but Qt and GTK are the most prominent and fully-developed ones around) to choose between. They have different ways of naming the same concepts and different methods for calling library routines. You'd have to write what would essentially be two entirely separate codebases to work with each graphics library.

      --
      Sorry, my karma just ran over your dogma.
  179. It's Window's that will kill it's self by CalsailX · · Score: 1

    After using linux on my desktop for five plus years and not touching a windows box but to clean virus and spyware off them. I had to use a XP box for the last two months to run an app that hadn't yet been ported to linux.

    The first week I felt like someone cut my legs off with a chainsaw, and that gentlemen still hasn't changed. After the first month I found
    most of the tweaks needed to make the machine stable.

    After two months of dealing with an Operating System that gobbles up ram and cpu time like a football team at all you can eat dinner. All I can say is that it's the bloated OS that will be the death windows as we know it. The stupid tricks used to make the it seem fast became almost a joke which would have been funny, but for the work I was trying get done.

    On a possive note... the app I'm using has been ported to linux, so now just need to find the time to move that work off XP. I know how fast the same box deals with the same work loads running Gentoo Linux so my coffee breaks are over.

    --
    Great tools do only ONE thing, but do that ONE thing very, very well.
  180. *sigh* by IBeatUpNerds · · Score: 1

    Why do we keep seeing these types of articles? I think we all understand that Linux has a fair market share and many people use it to their advantage daily.The same can be said about Windows.

    Obviously the future will bring surprises, happiness and problems to users of both systems. My real question: when will this extreme crap be done with? When will people understand that Linux and Windows are here to stay? When will they stop speculating about which one will conquer the other?

    My personal opinion on the outcome of this sort of ongoing battle is just to see where time takes us. I'm sure what will really happen will probably not be Linux taking over the desktop world, but probably also remaining a good piece of competition that suits the needs of many people. The proverbial pendulum mentioned is just the nagging back and forth of "linux will never be ready for desktop", "windows sucks", "linux will conquer the world!".

  181. Do we want Linux to kill Windows? by RedHatRebel0 · · Score: 1

    That is really the question. Personally, I'd like all of the "script kiddies" to stay on Windows and leave Linux as the peaceful and safe place that I have grown to love. Besides, this article has absolutely no point. There's always someone saying exactly the opposite as the author out there, & they're all just producing hot air. If he just used his time a little better instead of wasting it on this crap that people have been saying for years, then I wouldn't lose 2 valuable minutes of my life reading this. (Yes, I know it was my choice to read the article, but I didn't know how pointless it was when I began...)

  182. Needs a killer app by Matt+Clare · · Score: 1

    This is the year of linux on the desktop!

    Yeah right!

    Linux will continue to grow in cell phones, Tivos and server rooms, but not on the desktop. The only way it can put a real dent in Windows' share of the market is if it betters it in easy of use (not that impossible) and if it gets a killer app.

    What might the killer app be? Maybe a USB device that turns your PC into a PVR but costs ~$10.00 (ie, a ~$10.00 TV Card with a full linux distro). Or some kind 100% free skype to phone suite with video.

    All very inlikely, but so is Windows defeat. I don't even think a few more summers of slammer virues would end Windows use.

    That said, I don't think M$ will have a good time trying to get Windows out of the office and into your livingroom or pocket.

    And then there's Apple.........?

    --
    .\.\att Clare
  183. Please RTFA by ngyahloon · · Score: 2, Insightful

    At first I thought it was some guy who just wanted to spread some FUD about Linux but check out the last paragraph:

    Linux and Windows don't compete. Sun Microsystems sees this as an opportunity and has struggled mightily to position the combination of Solaris and Java as a platform. It almost makes it. I'd choose J2EE and Solaris over Linux for nonuser-facing server applications in shops that have expert administrators. But, similar to Linux and other flavors of Unix, Solaris is a nonstarter on clients, and that's enough to hurt its capability of competing with Windows. There is only one platform that can stand toe-to-toe with Windows, and that's the combination of OS X and Java.

    Now this guy is making sense.

    --
    Carpe Diem: Seize The Day!
  184. it's like combat by CAIMLAS · · Score: 3, Interesting

    It's like combat: the force with the superior size and resources is going to be unbeatable until they make a major tactical or technical mistake. Use the Iraqi War if you want an analogy: the US is cleaning shop, and it's because of superior technology, tactics, and sheer size (of the establishment, not the deployment). Training, too: Windows (say, all the futuristic military tech) is damn easy to set up and install, and everyone knows how to use it, so anyone can use it. Linux, on the other hand (say, a trial-and-error mortar system) is difficult to use for someone unfamiliar with it than Windows is, and it's not always as straightforward to get a system up and running.

    The Vietnam War would be a good example of how the superior force (size and resources) can still lose. Shitty M-16 rifles, poor coordination, and the disadvantage of not being on home ground (ie, the other side had "home team" advantage) all made things difficult for them. If Linux were to get a wide corporate install base, I think things would slowly start to get away from Microsoft.

    Also, I think RedHat (the company) is a big problem for Linux adoption. Their support is pretty bad, and they tend to still have a very "non-corporate" software attitude. Bug in your kernel? "Here, try this beta kernel." It's not a very corporate-friendly attitude, in my opinion. Are there any other good corporate options out there? No, not really, unfortunately.

    --
    ~/ssh slashdot.org ssh: connect to host slashdot.org port 22: too many beers
  185. The best way? Hardly. by Anonymous Coward · · Score: 0, Troll


    Linux is "a way -- and probably the best way -- to make system hardware do what it's told"?? Are you kidding?

    Let's ignore for a moment the fact that there is commodity PC hardware that won't even work properly under linux, and I'm speaking about some brands of 802.11g wifi, video cards, tv tuner cards, etc., becasue there are no fully functioning device drivers for it. Let's set this aside.

    The fact that you have to re-compile the kernel every time you install any hardware is completely insane. This is the best way to interface with hardware - recompiling the OS every time the hardware changes?

    In many cases, under windows xp you don't even have to reboot when you install new device drivers for hardware.

    Ok, you can all start the flaming about security etc. It's very easy for linux to be secure when the OS won't recoginze the network card.

  186. A Linux OS is a platform development kit! by SolusSD · · Score: 1

    All the diversity and options that are a Linux operating system are its greatest strength. It is up to the distros to develop platforms, not the community. Their job is to innovate and create new options for Linux as an operating system. Platforms using Linux would include distros like Suse, Redhat, Xandros, etc. All of which have put much time and effort to make a standard distro of Linux to be developed for. People look at Linux the wrong way. They see Linux as a single platform, and that it is not. Windows, Mac OSX, Suse, etc fall into that category

  187. 10 years ago : Windws cant kill Unix on servr side by Atreide · · Score: 3, Insightful

    10 years ago IT was only beginning to look at Windows and did not seriously thought of Windows for most of their server infrastructure.
    Now people say the same thing but about Linux.

    Why did Microsoft succeeded ?
    1/ network integration with personnal computers
    2/ marketing
    3/ ease of use
    4/ price compared to Unix systems
    5/ drivers & software

    Points 1 and 2 are Linux weakness.
    Point 3 had a lot of improvements.
    Point 4 : Linux is at advantage (until you dont buy Red Hat Server that costs more than W2003 SRV).
    Point 5 is improving for linux.

    Some experiment in our corp. We wanted to use Linux to host antivirus repositories & Windows Update Service & hardware+software inventory tools. None of the tools we selected work with Linux. Therefore we have to pay a W2003 for each box... hardware : 1300 euros, system : 700 euros, software : free or licenced per user. We plan to have tens of such computers.
    The lack of software compatible with Linux costs a lot of money. And slows down the propagation of Linux.

    --
    The world belongs to those who get up early. - I'm far from being the king of Earth then :-(
  188. But... by sootman · · Score: 1

    ...I bet it'll make a great iPod killer!

    --
    Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
  189. Mod Article down by hughcharlesparker · · Score: 1

    How do I mod the article flamebait?

  190. It's sort of the other way around by n0-0p · · Score: 4, Insightful

    The big reasons beta lost were shorter play/recording time and the fact that manufacturers had to pay licensing fees to Sony to use it. VHS was the free and open standard that won. Also, as the above poster pointed out, beta came first.

    I understand the point you're trying to make, but the analogy was the wrong choice.

    1. Re:It's sort of the other way around by iminplaya · · Score: 1

      ... that manufacturers had to pay licensing fees to Sony to use it.

      Yet another display of the folly(tragedy) of IP law. Again we got stuck with inferior tech due to it. Innovation my ass. Innovation is no damn good if nobody can use it. Hoarding and speculation is what it's all about.

      --
      What?
  191. Linux can't kill Windows but... by harvey+the+nerd · · Score: 1

    Walmart + Shorthorn might...

  192. What won't kill you by wumpus188 · · Score: 1

    will make you stronger.

  193. Out of the box... by killfixx · · Score: 1

    I have a homebrew computer...dual monitor setup using 2 vid cards made by the same manufacturer...Works perfectly in windows without having to go through any hurdles to get both monitors working just how I want them to...

    I have yet to find a single fix, after months of scouring the internet, that will get both monitors working... One of my monitors will go to 1600x1200...linux won't do that out of the box...Linux has some nice features that make it fun...and the whole tinkering aspect is exciting...but when it comes down to it...If I want my PVR to do it's job I have to be in windows...if I want both monitors to work properly at all settings I have to be in windows...

    Even with all the nice new installers coming out they still can't get those two seemingly mundane and simple things right...why? I would love to use linux...but until the wifey doesn't have a problem jumping online on one monitor and watching lifetime on the other then Linux will just be a tinker toy on a secondary partition on a secondary drive...

    So in conclusion...until Linux will install and run as fully and easily as windows it will not have a chance at grabbing the all important mindshare of the general populace...

    --
    "Helping to keep you two steps ahead of the Thought Police!"
    1. Re:Out of the box... by JustNiz · · Score: 1

      I got my 1920x1200 monitor working, all it required was adding a suitable entry into xorg.conf. Very easy.

    2. Re:Out of the box... by WaterDamage · · Score: 1

      You completely missed his point. I'll pay you $20 to get your GF or wife (assuming she's not a tech or developer) to make the monitor work without your assistance. Good luck! lol

  194. "You have to learn UNIX" by csoto · · Score: 1

    Au contraire. I am one of the biggest fans of Mac OS X, simply because I cut my teeth on REAL computing on Sun workstations and VAX clusters. I also owned several Macs. When Apple made my Mac a Unix box, I was smitten. I already KNOW Unix, and this just made my Mac all the more precious to me.

    However, my wife has NEVER used a Unix box in her life. Yet she immediately gravitated towards Mac OS X. She's a much better expert at the iApps than I (okay, maybe not with iMovie, but I'm only barely more adept than her - she's never used it).

    Using Mac OS X to the fullest does not require you to learn Unix. It's just that there's this wholesome crunch goodness Unix layer underneath an already great platform.

    --
    There exists no way of exchanging information without making judgments. --Bene Gesserit Axiom
  195. InfoWorld: "We have raised the bar ... by Qbertino · · Score: 1

    ... when it comes to shitty columns."

    Heavens Crickey - what a load of bullcrap in such a short comment. (I dare not call this an 'article').

    Yet another wannabe expert on computers babbling incoherent filler-talk about "pendlum swings" and OSS OSes being a "bag o legos" and whatnot.

    I've seen articles pitting Linux against Windows and pointing out the advantages of 'doze over Linux in a professional manner, but this one isn't even good for a bad joke. In fact, it's a perfect example of how _not_ to write on this issue.

    And then this sorry excuse of a cliffhanger conclusion: "Stay tuned; i'll tell you all about it."

    No thanks, Tom Yager, after this my Crapometer is at max for this quarter allready. And I want my 90 seconds back.

    The linked column is nothing else but the new media equivalent of trolling. Move along.

    --
    We suffer more in our imagination than in reality. - Seneca
  196. Everything. by Anonymous Coward · · Score: 0

    What does branding it, boxing it and putting on a price tag, have to do with a tool doing a job?

    Everything. as soon as you expect someone to take it off the shelf, trust it, and use it without more than vague reasoning towards security (which no one understands) and reliability (which is quickly failing argument in modern Windows). free doesn't mean better, quite the opposite in the minds of most. security is a nebulous concept that many don't understand, otherwise they'd be torching LexisNexis. reliability is second to responsiveness, and i'm sorry but Xorg/Xfree86 still fails, not that reliability is the problem it once was in Windows.

  197. Re:Mindset - One Word by EvilBudMan · · Score: 1

    One Word:

    Spyware

  198. Umm, who cares? by gosand · · Score: 0, Flamebait
    Linux can't kill Windows? Who friggin cares?

    I really could give a flying fuck about Windows. I use Linux, I like it better for what I do. As long as I can keep using it, and it keeps improving, I don't care if it "takes over the desktop" or not. If "taking over the desktop" means that the mass population of the US uses it, then I sure don't want that to happen. Because the American Public is, collectively, stupid. We fall for Nigerian scams, watch NASCAR, sit our fat asses in front of the TV for half of our day, eat fast food, watch American Idol, and vote a complete moron into the highest office.

    I don't want Linux to take over the desktop, and I am not sure why anyone else does either.

    --

    My beliefs do not require that you agree with them.

  199. Re:I think he's WRONG by ninji · · Score: 4, Insightful

    to quote "it will never put a dent in Windows' mind share or market share"

    Hasnt linux already largly DENTED windows mind and market share, how many governments moved to open source and nix from windows systems, those XX,000 Systems dont count as market share?

    Linux wont ever replace windows but, your a fool to think windows will remain uneffected.

  200. Linux is the rebellion of the intellectuals by Simonetta · · Score: 4, Informative

    Linux is the manifestation of Ayn Rand's 'rebellion of the intellect' projected in Atlas Shrugged. Computer professionals were constantly being knocked back to square one whenever management decided to change the company IT structure. Since the early 1950's it was normal to expect programmers to master a dozen languages and systems, all theoretically similar but with arbitrarily different structures. It was the modern equivalent of the Greek myth of Sisyphus, who was condemned to push a boulder to the top of a hill, only to have it roll down again, forever.
    Linux changed that. Computer professionals are telling management that they will work with one standard OS. Their OS. Designing and building it themselves and distributing it freely is a brilliant strategy to counter management's claim that some other OS was cheaper.
    All this happened concurrently with the widespread introduction of powerful inexpensive desktop computers into the workspace. Office computing adopted the Windows OS in order to maximize the productivity gains that could only be achieved by having the entire world adopt a single standard. An incredible stroke of luck for the company selling that standard. The price went to the company that was the most relentless and focused on forcing the world to adopt their standard. That company was also flexible and intelligent enough to integrate huge positive feedback loops into the process of getting the world to adopt its product. The astonishing success of the company in selling a product that the world was desperate to buy doesnt mean that they can do it again with another type of product.
    The widespread introduction of powerful inexpensive desktop computers was predicated on the condition that the performance/price ratio of the PCs would double every few years.
    The current problems that result from the conversion of all other Operating Systems to Linux are temporary. They are being addressed; they will be solved. The widespread introduction of powerful inexpensive desktop computers was predicated on the condition that the performance/price ratio of the PCs would double every few years. The entire next generation of desktop computers may find their doubling of power completely dedicated to transition from Windows to Linux. In other words, it may take a doubling of computer power to make Windows applications run on Linux with the same speed and efficiency that they currently run on Windows OS. This will be denounced as a complete waste by IT professionals. Theyre correct, but it will be a necessary step anyway.

    1. Re:Linux is the rebellion of the intellectuals by Anonymous Coward · · Score: 0

      -1: Randroid.

      Grow up.

    2. Re:Linux is the rebellion of the intellectuals by Some+Random+Username · · Score: 3, Informative

      Actually, plenty of computer professionals don't really care much for linux. I use it when I need to, and I use other systems when I need to, I have no linux hardon making me use linux for things it doesn't do well. Using several OSs really isn't that hard, and I get the benefits of always getting the best tool for the job.

    3. Re:Linux is the rebellion of the intellectuals by Anonymous Coward · · Score: 0
      Linux is popular because nerds like to tinker. Its the only reason that OS is around.

      You can say how people (lusers as you say - you bully you) want more control of their OS's and the ability to customize everything/anything.

      problem with that is it is just wrong. People don't want to use computers, they want to complete a task. They don't want to be searching for dependencies, they want to finish their investment calculations. People are willing to give up some control for simplicity.

      Nerds find it fun to hack and fix things, ordinary people don't. If you ever broke a radio (whatever) to try and put it back together, you are a nerd and not an ordinary person (whether you got that radio to work again or not).

    4. Re:Linux is the rebellion of the intellectuals by I'm+Don+Giovanni · · Score: 1, Flamebait

      More like the rebellion of psuedo-intellectuals.

      --
      -- "I never gave these stories much credence." - HAL 9000
    5. Re:Linux is the rebellion of the intellectuals by dominion · · Score: 2, Interesting

      Maybe. Or maybe Linux is the ownership of the means of production and distribution being put into the hands of the producers themselves.

    6. Re:Linux is the rebellion of the intellectuals by Geoffreyerffoeg · · Score: 3, Funny

      Linux is the manifestation of Ayn Rand's 'rebellion of the intellect' projected in Atlas Shrugged.

      I was surprised for a second to see what is half-correctly described as a "Communist" project in the role of something from Rand. Then I realized that you're correct. The strike doesn't need to involve a laissez-faire economy; it just requires a radical change from the corrupt status quo. If that's a change from a monopolized market economy to an open-source change of ideas, so be it. The strikers still refuse to work with the Old Guard.

      The one thing they need now is the concept of "intellectual property." Companies today, e.g., SCO, go so far as to claim that IP cannot be voluntarily freed (remember "the GPL violates the copyright clause of the Constitution"?), just as those from AS tried to force Rearden to release his rights to Rearden Metal. Those from Galt's Gulch set up a system strongly based on private property; the OSS hackers have a system based on voluntary and unrecompensed donations to the community. It may be the opposite economy, but it's the same underlying idea.

      When we see the blinkenlights of New York go out from the next Windows vulnerability, we will know that our job is done.

    7. Re:Linux is the rebellion of the intellectuals by 80+85+83+83+89+33 · · Score: 1

      speaking of performance doubling, i've been following how long it takes for desktop PCs to double their real world performance on benchmarks like the Winstones and Sysmark. it is hard to compare systems over time when the damn benchmarks themselves keep changing versions every year, but, the figures i get are about 30 months for doubling time. so, 25 years for 1000 fold gain, 50 years for a million fold performance increase!

      --
      i disable sigs
  201. whaa? by tacocat · · Score: 1

    There are a few things in this article that I found a little amazing. For one, that linux can't present a complete solution in business is a bit of a generalization.

    It might depend a bit on your business, wouldn't it?

    I think he has a point on mindshare. Everyone in the Business mindset has the opinion that no matter what, you still cannot get fired for picking Microsoft products.

    But I think that everyone in a desperate mindset: a position where all options have to be explored or perish -- cost, performance, stability, whatever will have a different opinion since most of these people have been driven to this brink as the result of some failing in Microsoft (or someone else) products to begin with.

    Over time, Linux will have an effect on Microsoft. It doesn't have to compete directly, but it will always make an influence on anyone exposed to it.

  202. Good job by Anonymous Coward · · Score: 0
    > I didn't read the article.

    You'll fit in very well here.

  203. Use the Slashdot story generator. by pklong · · Score: 1

    Use the Slashdot story generator and your story is sure to be accepted.

    --

    Philip

    Signatures are broken

  204. Flash from the past by ScuxxletButt · · Score: 1

    It's nice to see that the legacy of Jesse Berst is not forsaken...

  205. Why Linux is necessary, example 138,749,374,937 by Simonetta · · Score: 2, Funny

    I typed the above message into Microsoft Word 2000 in order to use the integrated spelling checker.
    When I cut and pasted the text from Word to the Slashdot message text box, none of the apostrophes transferred correctly. All the "don't" and "won't" became "dont" and "wont".
    Any operating system that makes its users look illiterate is doomed. It's just a matter of time.

  206. Not surprised at all by ngsk · · Score: 1

    I had toyed with Red Hat versions 5, 8 and 9. It was fun initially because it was different from Windows. But it's really not for the average person. I don't know about the other distros or about Fedora 3. But from my experience with RHL 9, I must say I wasn't very impressed. Or should I say, once impressed, but not any more. Once I tried to get RH to detect my scanner. I googled for answers and asked at forums and was advised to download some drivers. Did that and installed the drivers but nothing happened - didn't even know whether the installed files went to! On another occasion I wasn't able have RH detect my ADSL (Aztech) modem and I sort of just up. It's different with Windows. Your scanner or modem would probably come with their own drivers and all you've to do is place the CD or diskette into the drive and everything is taken care of. Things run on Windows and that's important for productivity. The average Joe isn't interested or have the time to figure things out. Recently, I installed Freebsd 5.3 and I got excited again. I like the fact that it comes in 1 CD and you can practically install everything no-core after the installation through ports or ftp or whatever. Very cool. More importantly, it detected my router and I was able connect to the Net. Otherwise, it wouldn't be of much use to me. As with my experience with RH, I still can't get some things to work. For example, I haven't yet got the printer to work despite trying out known solutions.

  207. Linux already denting Windows' market share by Anonymous Coward · · Score: 0

    Linux is already making huge inroads on the desktop market and according to both Gardner and IDC research the percentage of Linux desktops is estimated to reach between 15% and 20% by end of 2005. According to the latest studies the Linux market is among the fastest growing markets and is projected to exceed $35.7 billion by 2008: http://www.techweb.com/wire/showArticle.jhtml?arti cleID=55800522
    Looks like Linux is becoming the standard desktop OS much faster than anyone had expected.

  208. In this context, choice is the problem by markhb · · Score: 2, Insightful

    You have particular, personal requirements for which this level of choice is useful. However, for the proverbial Vast Majority of users (i.e., all those people who simply want to get out from in front of the monitor as quickly as possible while devoting the minimal amount of brainpower to the appliance they have to use), all of that gets in the way.

    Put it another way: it is not an upgrade to ask users to make choices among things about which they should not have to care at all.

    --
    Save Maine's economy: write stuff down. All comments are exclusively my own, not my employer.
    1. Re:In this context, choice is the problem by Anonymous Coward · · Score: 0
      I agree with you. I used to run Linux/BSD, but now that I'm at university, taking a non-technical degree, I've come to depend on the Windows ecosystem. It simply works better for the tasks I'm now required to do. A Mac would work, but I had already got a PC, and I think PC hardware is a better value.

      For a programmer or other technical user, Linux is a very good system, and I still prefer it to Windows for most such uses. However, for non-technical work, especially where a lot of specialised software has been written, Windows and Mac OS are the only real choices.

  209. Re:Mindset - One Word by dzo · · Score: 1

    This should be ONE WORD: Different way of handeling things. There will be attemps on spyware for linux in the future but the fact of the matter is the only way you will be able to get totally infected is if you run your Browser or "spyware" as root. Then you are asking to get infected.

    It just wouldnt happen, unless you want it to happen

    (please feel free to respond or add anything. Educate me if i am wrong! :) )

    Linux is my operating system.

  210. Re:I think he's WRONG by Grishnakh · · Score: 2, Insightful

    Not to mention the large number of corporate desktops that have been switched to Linux.

    I think too many people only look at what OS people buy with their Dell or Best Buy computers, and assume that's the way all computer are.

  211. Who want to kill WIndows by Anonymous Coward · · Score: 0

    Lets focus on the open source world and making it better and better. If Windows sticks around good for MS and MS lovers. As far as I can see there will be no benefit in focusing on killing Windows or on killing any other product. Competition from them will make our open source products better.

  212. Most excellent quote! by Anonymous Coward · · Score: 0

    People care about *price* first and *effort* second. Some people will crawl through mud to save a nickel. We call those people "the majority".

    That has got to be the best statement I've read in a long, long time. ...and it is so very much true.

  213. Your price argument is patently false by sean.peters · · Score: 2, Insightful
    People care about *price* first and *effort* second. Some people will crawl through mud to save a nickel. We call those people "the majority".

    If this was true, a majority of computer users would ALREADY be using Linux, since for the individual home user, it's free. You might argue that most people get Windows "free", because it's pre-installed. But in fact, it's already possible to buy computers (at least from your local white box outfit) that have Linux or no operating system installed. Without the MS tax, they go for significantly less money than those with XP pre-installed... but most people don't buy them.

    People will take the path of least resistance, even if it costs them money.

    I have no problem with the rest of your post.

    Sean

    1. Re:Your price argument is patently false by advocate_one · · Score: 1

      the vast majority of computer users out there don't know about Linux because the mainstream press keep it that way... it's all ms-windows this, that and the other to keep the advertisers happy and the advertising revenue rolling in... everytime you see an add with the text "xxx recommend Microsoft Windows XP", part of the cost of that add was effectively paid for by Microsoft in the form of kickbacks to the OEMs in the form of Market Development funds... Microsoft doesn't discriminate on price to the OEMs anymore, they just have a points system for the market development funds instead... the more hoops you've jumped through, the more money you get from them... It's a rebate in all but name and it's been very carefully designed to get past the DOJ punishment.

      --
      Donald 'Duck' Dunn: We had a band powerful enough to turn goat piss into gasoline.
  214. Just a correction on LAMP by Foofoobar · · Score: 1

    Lamp is Linux, Apache, MySQL and PHP. The reason I point this out is because PHP used to be an Apache Foundation project and had built in MySQL support (hence the AMP). PHP is also the number one Apache module and therefore is often bundled WITH some Apache builds.

    Python and Perl developers like to claim that the P in LAMP stands for Python and Perl (and it CAN) but it traditionally refers to PHP.

    --
    This is my sig. There are many like it but this one is mine.
  215. He's right and he's wrong by shai_m · · Score: 1

    He's right: The Windows app stack is deeper: OS + DB + app server (of sorts)

    Linux does not compete with that.

    But you can get Linux + Oracle + WebLogic or Linux + mySQL + JBoss (if you want to be Open Source all the way). And that is equivalent.

    So Linux on its own is no competition for Windows. But it was never intended to be.

  216. utterly confused or confusing? by pjr.cc · · Score: 1

    Did anyone else read the article and feel very confused...?

    At some points its hard to even know what exactly he's refering to, desktop, server?

    take for instance this: "Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions. Windows wins. Linux doesn't lose, because it can continue the legacy of another nonplatform, namely Unix, that needs to be refreshed and extended"

    If i were talking the desktop, then what has scalability to do with it?? adding more users/desktops? well, windows win's on the desktop by sheer weight of numbers... But he says server solutions.. what kind of servers is he refering to?

    the .net platform is consistent and scalable? oh REALLY? sql server can span across multiple nodes? like oracle RAC? to name but a few...

    and the whole middle of the article is just so very vague.. The the last 2 paragraphs make no sense what so ever... he mentions "linux and windows dont compete" yet he also mentions j2ee... my god, does he even bother actually doing any research for this? if your going to mention j2ee and your talking servers, this is exactly where unix and windows compete... and unix wins...

    Then his closing comment... "There is only one platform that can stand toe-to-toe with Windows, and that's the combination of OS X and Java"... what exactly about OS X + Java is a competitor to windows? Or, windows + something_else?

    i've never seen a (published) article that was at once so extremely vague and mis-directed, it felt like george bush writing an article in dr dobbs...

    truely bizare...

  217. Platform / Operating System - Hogwash by lcsjk · · Score: 1

    The /. heading is mostly flamebait, but unfortunately it is true. Forget the OS/Platform part. I have been watching Linux for nearly 15 years now, and it still has not made a dent in the one area where it will gain recognition - the DESKTOP. Until it does the same job as Windows, is compatible with Windows, and most importantly, is already installed and working when the user buys his or her system, it will never capture more of the Windows market than the server part. As far as I can tell, it has not moved much in the past two or three years. We users/promoters make a lot of noise and we know which is best, but the general public knows nothing. Linux probably needs more PR than anything else. And it needs more companies like Lindspire that sell a complete working package.

    1. Re:Platform / Operating System - Hogwash by pandrijeczko · · Score: 1
      Please define "desktop"...

      The laptop I am typing this on runs Linux. I am running KDE and have a web browser, office package, DVD player, CD Burner, music ripping and playing apps, development tools & network analysis tools on it.

      I have a few games installed, I can read and post to Usenet from it, I can do P2P filesharing on it and I can chat to MSN, AIM, IRC, etc users perfectly happily.

      I have a USB printer that works fine that I can plug in and out and use when I like, my USB memory stick works on it, as do my PCMCIA & USB hard disks.

      This is about all I need to do on my "desktop" so quite clearly, for me, Linux is capable of doing all I need it to.

      Yes, it took me a while to set up a few of the things I needed but then I wasn't aware that the definition of "desktop" included a time factor.

      If you want to tell me that Linux can be more difficult to set up than Windows, then I will agree with you.

      If you want to tell me it takes more time to learn than Windows, then I will agree with you.

      If you want to tell me that it takes longer to administer than a Windows PC, then I will disagree with you because I spend as much time updating virus checkers, patches, spyware tools on the Windows 2000 laptop sat next to it as I do adminstering my Linux machine - probably more time in fact.

      So please, define "desktop" for me because how can I possibly agree or disagree with you when I don't even understand what you are talking about...

      --
      Gentoo Linux - another day, another USE flag.
    2. Re:Platform / Operating System - Hogwash by lcsjk · · Score: 1
      "most importantly, is already installed and working when the user buys his or her system"

      You covered all but one part - the most importantly part. Desktop is the system that most users worldwide are using.

      Desktop is the system that AOL targets with all those free CDs that actually get you connected to the internet when they put it into the CD reader.

      Last year notebooks/laptops were a large percentage of annual sales, but the vast, vast majority of computers are still the desktop non-mobile system.

      The vast majority of those users never heard of Linux.

      The vast majority of those users cannot download and install a program, and if they can download it, they cannot find it later unless it appears on the desktop or maybe in "My Documents" where everything they do is scrambled together.


      Desktop is the system that came on their computer. It will never get modified; it will never get updated; it will never get a firewall, it will never get virus updates unless they are automatic; it will never get any changes unless it is done like MS is doing with the latest XP updates and shoved onto their computer when they go online. One exception: AOL must supply linux CD's so that the user can go online


      Yes, Linux can already do everything Windows can do, and it could do that four or five years ago. However, like yours, it has to be done piecemeal.

      Linux needs more companies to deliver computers with double-boot sytems so the user can start Windows or Linux and seamlessly, get on the internet and not worry about which system it is.

      In short, Linux does not need more programs or additions. Linux needs PUBLICITY and prebuilt and installed systems that work as well as Windows works.

      So in conclusion, it does not matter whether you call it Desktop, or Laptop or whatever. It has to be the system that is pre-installed and WORKS without user intervention.

  218. Obligatory ST: IV Quote... by Chordonblue · · Score: 1

    "Linux Can't Kill Windows..."

    Perhaps Linux no longer needs to try...

    "Khaaaaaaaannnnn!"

    --
    "...Well, there's egg and bacon; egg sausage and bacon; egg and spam; egg bacon and spam; egg bacon sausage and spam..."
    1. Re:Obligatory ST: IV Quote... by Kethinov · · Score: 1
      "Khaaaaaaaannnnn!"
      That's from Star Trek II
      --
      You're right, I wouldn't steal a car. But if it were possible, I sure as hell would download one!
    2. Re:Obligatory ST: IV Quote... by Chordonblue · · Score: 1

      Whoops! I didn't realize I wrote "IV"... I, as a self-proclaimed geek, am ashamed! :O

      --
      "...Well, there's egg and bacon; egg sausage and bacon; egg and spam; egg bacon and spam; egg bacon sausage and spam..."
  219. It's True by Trent+Polack · · Score: 1

    I'm sorry, but coming from someone who has used both Linux and Windows extensively for both work and play, I believe that Linux can not, and will not beat Linux. That's it.

    I'm just talking percentages here. I personally believe that Linux servers kick ass, seriously. I've had, and hated, Windows-based web servers; however, the server market is a small (though incredibly important) slice of the computer-using pie. The real meat lies in desktop solutions, and as much as it may pain you to hear this: aesthetics, simplicity, and abundance win. When average joe goes to a computer, he expects it to be Windows, if anything else, he may see a Mac, but there have only been a very small handful of occurances in my life where I sit down at a random computer in a lab somewhere and have a Linux-based system sitting right in front of me.

    Windows is just better at doing the things most people need to do. I'd say, and I'm just pulling this number out of my ass, that at least 80% of people will never have a need to use any of the advanced options their system has to offer, nor even the simple customization options such as changing window themes or something. Linux systems, typically, thrive on customization and users tweaking various options - it's the only way that the "hardcore Linux users" that I know are able to tweak their system to a usable state (by their standards). As of right now, I have yet to see any mainstream computer users ever even MENTION the name "Linux." Ever.

    The only real competition I see for Windows, as far as its mainstream audience goes (and, as sad as it is, the mainstream is generally the top priority for most companies) are Macs. People love pretty things, and Apple does a fantastic job of making things ridiculously pretty, whether it be their OS, their systems, or even their various peripherals. Hell, even if Windows users love Windows, they can generally still go to a Mac and easily work their way around (especially since most of the Macs I've used in recent years have an abundance of Microsoft software installed).

    The other main thing that I think is killing Linux's "popularity" is the fact that there are so many goddamn distros. People like simplicity, one brand name, that's it. Most of the people I know get confused over what edition of Windows to boy (2000, XP, etc.), but at least the brand name is consistent (Windows, Windows, Windows; or even Apple, Apple, Apple for that "other" crowd). With Linux there are so many distros that occasionally it just overwhelmes someone who's interested in trying it out with no prior knowledge; even if all of the distributions have the same goal, their names may be different enough to confuse most people.

    Rant over and I'm sure it's scatter-brained as all hell, while still reaching no ultimate conclusion, or even if it did, there was nothing really to back any of my statements up, other than personal opinions.

    --
    Trent Polack
    www.polycat.net
    1. Re:It's True by spiderworm · · Score: 1

      "I'm sorry, but coming from someone who has used both Linux and Windows extensively for both work and play, I believe that Linux can not, and will not beat Linux." I agree. Linux will never ever ever ever beat Linux, not in a million years.

    2. Re:It's True by pandrijeczko · · Score: 1
      The other main thing that I think is killing Linux's "popularity" is the fact that there are so many goddamn distros.

      "Good afternoon, sir, welcome to McDonalds. What can I get you?"

      "I'd like a quarterpounder with cheese, please."

      "I'm sorry, sir, we just sell Filets O Fish."

      "Oh. Can I not have a Big Mac then?"

      "No, sir, we only have Filets O Fish."

      "Fries? Coke? Apple pie?"

      "No, sir, as I said, just Filets O Fish."

      ...

      That's what a world without choice is like - revel in diversity!

      --
      Gentoo Linux - another day, another USE flag.
    3. Re:It's True by Trent+Polack · · Score: 1

      Yep, I kick ass.

      Typos own me.

      --
      Trent Polack
      www.polycat.net
  220. Re:The best way? Hardly. by delire · · Score: 1

    The fact that you have to re-compile the kernel every time you install any hardware is completely insane.

    You poor chap, you really did meet the wrong person in IRC didn't you. I have only *needed* to recompile the kernel to use new hardware precisely because I prefer to work from a skeleton kernel. Five years ago, it was a little rough, but now I barely need to think about driver support. Windows however is an ongoing nightmare, actually having to download drivers from websites - hard to do when you're network card isn't 'detected' out of the box (to use your own example).

    You however would have been better off with a Desktop distribution of Linux, like Mepis or Ubuntu, which in my experience (and I'm talking about many highly vareigated install targets) work out-of-the-box. Join #mepis sometime, these kids don't talk about compiling kernels, they talk about how cool each others KDE themes are.

    Linux itself supports many many times more hardware than Windows, count them!. In fact, support for legacy devices and peripherals is one of it's pre-ordaining advantages.

  221. Ob /. nitpicking by llywrch · · Score: 1

    > My guess is that the bushman will have a hard time figuring out what the mouse is for. Most likely they
    > will use the mouse as a slingshot and head back into the jungle.

    By definition, Bushmen live in the desert (aka, "the Bush"), not the jungle. That would be one lost Bushman who went to the jungle.

    I guess you could argue, though, that the mental exhaustion from trying to understand computers would cause enough disorientation send any desert dweller to move to the jungle. I know there are work days that end with my feeling the same way.

    Geoff

    --
    I think I see a trend here. Maybe for them it really would be easier to muzzle the entire internet than to produce p
  222. Linux already has killed Windows by ezavada · · Score: 2, Insightful

    It has killed the main thing that made Windows immortal. It destroyed the perception widely held in the early 90s that everything would eventually move to Windows. As a result, people are willing to consider alternate platforms, and those who take them up are more often than not finding advantages.

    I love the work Apple has done with OS X, but without Linux having broken the "Windows everywhere" mindset, OS X wouldn't be getting much attention.

    Increasingly, computer experts are seeing a OS monoculture as a bad thing, which is a huge change from the early 90s. And it was Linux that made that possible.

  223. If I was Microsoft.... by smcdow · · Score: 2, Insightful

    ... I'd be a lot more worried about GoogleOS than Linux.

    But I'm not Microsoft, so instead I'm looking forward to both GoogleOS and future versions of Linux.

    --
    In the course of every project, it will become necessary to shoot the scientists and begin production.
  224. More Linux users == more manufacturer attention by Dammital · · Score: 1
    "Why is everyone so worried about whether Linux gains market share over Windows anyway... As long as we can all still use Linux or other open-source software, what does it matter what the rest of the world does?"
    Because the hardware manufacturers care about the rest of the world. We were stuck with crap like winprinters and winmodems because of the myopic vision of hardware marketers.

    It took way too long to get wireless support for Linux. Sound card support was a mess for years. We are still fighting the video card suppliers, who treat Linux as an afterthought if they release drivers at all.

    More Linux users mean a larger mindshare of the people who make the products we use. Larger mindshare will lead to better support.

  225. Who cares? by spiderworm · · Score: 1

    Whether Linux kills Windows for the rest of the world is irrelevant to me personally, because in my little world, Linux has already killed Windows. I know some of you have personal business interests in the widespread dominance of Linux, so for your sake, I hope Linux wins out there too. If what I've seen on the desktop in the past couple of years is any indication, Linux has a bright future there. This guy's article didn't appear to have much credibility to me.

  226. false assertions and misrepresentations. by nhorman · · Score: 1

    This article (like so many others) is a complete load, based entirely on false assertions and a lack of understanding of the differences in the Linux Model. A sampling: "Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions. Windows wins" Why? consistent, predictable, scalable, self-contained platforms are the reason the SuSe's, Red Hats, etc, of the world exist. They provide stability and consistency in programming apis, scalability tools and resources, and pre-packaged solutions for common IT environments. In addition they offer the Freedom in Linux to expand those solutions to meet customer specific needs. M.S. does all of these (except the last one). "No one is so foolish as to make what can be acquired cheaply or free; it's wiser to pick one from among hundreds of platforms and modules that fill in the holes between open source Unix and your applications. In contrast, Windows fills in all the blocks between the hardware and your apps" The author seems to be contradicted by the evidence here. People who use Linux distributions in the enterprise do so by and large because they can fill in the gaps between the set of components that they obtains from other sources, the operating system and their application, effectively tailoring a solution specific to their environment. They choose to do that because it provides a better solution than the pre-fabricated one size fits all solution that Microsoft offers. For many people the M.S. solution works well, or at least is "good enough", but as is evidenced by Red Hat, Novell, etc. financial reports, more and more people are realizing that Linux lets them do better than "good enough" "An operating system is a rack into which device drivers and APIs are inserted. A platform is a rack into which applications are inserted." And how exactly is it that Linux doesn't fit this bill to a T? Windows of course does as well, but with far less flexibility than Linux offers. In short, the whole article seems to be based on the notion that what the enterprise really wants is a platform that lets them make a custom environment within the confines of strict rules, that ostensibly provide a greater level of integration ease. I would argue that Linux provides a greater level of this ease of integration while at the same time allowing for a far greater latitude in design choice.

  227. Im fed up... by johnwyles · · Score: 1

    Any schmoo who write about this controversial topic is bound to get some /. attention. I am sick of seeing Bob Nobody try and predict whether Linux will pre-dominate and/or Windows fail. Unless they have something valuable to add or some new prespective (which this article lacks) then I move on and forget the damn thing. If only a fraction of these articles had authors who actually researched the topic a little more and pulled out some numbers then maybe there would be one good article a month, MAYBE!

    --
    [[ the only 15 letter word that is spelled without repeating a letter is uncopyrightable: it may soon be, however. ]]
  228. Competing On A Level Playing Field by pandrijeczko · · Score: 1
    Whoever thinks Linux has been designed or aimed as a "Windows killer" ends up just demonstrating they understand nothing about the FOSS movement.

    Firstly, people were giving away software long before anyone thought of making money from it (let's face it, that's how UNIX took off in the first place). And whilst the big players in the commercial software world have risen to get to where they are today, there have always been people giving software away whether you used a PC, Amiga, Commodore 64, etc. The fact that free software is so prevalent today is due to more people writing it, sure, but that's because the Internet allows programmers to form communities and distribute what they've written much easier. What I'm trying to illustrate is that Windows, as a commercial operating system, became popular despite a FOSS movement being there anyway.

    Secondly, many Windows users and supporters always seem to forget a very basic, intrinsic concept - Linux is just the operating system kernel; everything else is FOSS software, much of which can only run sensibly in a UNIX-type environment but a great proportion of it is available to run on Windows perfectly happily - Mozilla, OpenOffice, GIMP, etc. etc. So FOSS software benefits anyone on any OS, not just Linux.

    Thirdly, a lot of Linux users are angry at Microsoft & the media turns in into a "Windows v Linux" war. However, the anger (amongst the non-zealot FOSS community) is actually aimed more at proprietary file formats that are deliberately designed to lock users into particular OSes and applications. Remember, for any specific task in Linux, there are probably several applications to choose from to perform that task - therefore, FOSS users are used to choice and do not like being locked into specific vendors purely because a closed file format restricts them to using MS Office, etc. Who cares whether a file is in ."doc", ".ppt" or ".xls" format as long as you don't have to change your whole way of working and operating system in order to read those formats.

    There are no killers here, no "victories", just people exercising their rights to use what software they like when they like using.

    End of story.

    --
    Gentoo Linux - another day, another USE flag.
  229. Kernel modules, anyone? by cr0sh · · Score: 1
    I can't remember the last time I had to compile a kernel specifically to get a piece of hardware to work (I think the last time I was using SuSE 6.3 or something - and I think I was doing a kernel upgrade at the time anyway)...

    Today, most (all?) distributions support loadable kernel modules. If there is anything you have to compile, it would be the module itself, not the kernel. Most of the modules, though, are already pre-compiled - just pick and choose what you want, set up any flags or options (if needed), and go. You may have to frob a file or two in /etc if your installer is lame, but most do that for you today, too.

    About the only time I can think where you have to recompile the kernel anymore is if you want to eliminate a bunch of options from shipped "stock" compiled kernels, so that things that aren't needed by your machine aren't included (ie, you like to run very lean and mean) - or if you have a *very* esoteric piece of old or interesting hardware that you want to be made a part of the kernel and none of the stock kernels handle it, or offer a kernel driver. That, or you want the module in the kernel for some other reason (performance or something, maybe - where a loaded module won't work for you).

    --
    Reason is the Path to God - Anon
  230. RMS would agree by NatteringNabob · · Score: 1

    Which is why he insists on calling it the GNU/Linux system which contains not only the Linux kernel, but all of the other modules that sit between the kernel and your business application. It is strange that we keep getting these 'Linux can't reduce Window's market share' when it is doing just that on the server side, and just starting to do the same on the client side. If China, India, and South America start installing significant numbers of GNU/Linux computers, Windows world wide market share will go down. The author is right that GNU/Linux can't kill Windows on the client, but who cares? It doesn't bother me if somebody else choses to use Windows as long as I don't have to.

  231. Re:I think he's WRONG by Anonymous Coward · · Score: 0

    Not to mention the large number of corporate desktops that have been switched to Linux.

    I have not heard about that. What large number would that be?

  232. I admit it, I'm a Windows junkie... by HerculesMO · · Score: 1

    But I fail to see, even without reading the article, why Linux could not take over Windows as a predominant OS in the market.

    Let's discuss a few things.

    First, you have multiple developers working on the same OS. Redhat, Mandriva, Novell (SUSE), etc... they all work to the same end, to create a suitable Linux desktop environment as well as a hardened server environment for intranets, web serving, file serving, etc.

    Next, you have inherently great security built into Linux. Windows requires more of a careful hand, and is far more prone to virii, but the sheer number of developers reviewing Microsoft code pales in comparison what an established open source product can do. Just look no further than Firefox to discover that, Linux is merely another example.

    The strength of the Windows platform does NOT lie in its products. It does NOT lie in its technological marvels. It lies in its simple interoperability with other applications that are polished. Microsoft Outlook ties in great with Microsoft Word, Excel. Microsoft BizTalk ties in great with .NET. Microsoft's Windows platform makes that all come to life.

    What the Linux field of products need to start working on is not making Linux great -- it's making Linux EASY to implement and complement a suite of products. If let's say, Redhat and Novell decided to combine efforts to fully develop Open Office to rival ALL features of Microsoft's Office program, then it could be done. In turn, Mozilla's Sunbird (calendar) could be integrated with Thunderbird, to make a proper Outlook replacement, with more stability and functionality. Running on Linux is only a plus, as the software would undoubtedly run smoother and cleaner. Coupling that with the open source nature of both aforementioned products, efforts could be made to make sure that the Sunbird/Thunderbird combo integrate and meld well into OpenOffice's architecture. Make a complex spreadsheet with graphs and equations, database pulls, etc... then simply click 'File -> Send To Mail Recipient' and Sunbird/Thunderbird launches and sends the file to the intended recepient.

    It doesn't have to stop there. Products that are offered in a Linux environment can rival Microsoft in terms of sheer technology. That's not what this game and this race is about. It's about interoperability. That's why most businesses nowadays choose Microsoft's Exchange, because it molds so easily into their environment.

    Give people a choice with Linux, make it work well TOGETHER, make it simple to use and understand, and you will show the Microsoft crowd (myself included) that Linux CAN make a humungous dent in the chinky armor that Microsoft wears.

    The tools are there -- we just need to leverage the open source 'movement' and mobilise it in a way that will show Microsoft that development does not need to come from a corporate structured environment in order to flourish, or in order to be superior in any way.

    You don't think that Steve Balmer would be sending memos about how 'Linux is our greatest threat' unless of course, it is, do you?

    --
    The price is always right if someone else is paying.
    1. Re:I admit it, I'm a Windows junkie... by thed00d · · Score: 1

      "Next, you have inherently great security built into Linux. Windows requires more of a careful hand, and is far more prone to virii,"

      I have several problems with this statement. I disagree that Linux inherently has great security. Linux has good security, but security isn't really a product, it's not just something that you turn on and, poof, your secure. It's easier to harden Linux, than it is to harden Windows - thats true, but they can both become as secure with one another. It requires alot of work, reguardless of the OS - Most of that work actualy goes into educating your users, not physicaly "securing" your machine.

      I feel that Linux is just as prone to virii as any other operating system - we just haven't seen that many for it. I strongly feel that in the next 5 years, it will become a much larger problem.

      "The strength of the Windows platform does NOT lie in its products. It does NOT lie in its technological marvels. It lies in its simple interoperability with other applications that are polished. Microsoft Outlook ties in great with Microsoft Word, Excel. Microsoft BizTalk ties in great with .NET. Microsoft's Windows platform makes that all come to life."

      That interoperability really goes along way with keeping Windows as the dominant OS. We're just now starting to see more mainstream applications for Linux coming out, but it's far from a simple install process - and who do call when it goes wrong? That truely is a huge area where Linux needs to be improved for the general users. Sure, the developers say email them, but what if you can't get your modem or NIC working? Who are you going to email? and how?

      Anyway, just some general observations - I'm in a pissy mood with the hipaa deadline looming.

      --
      http://www.accelerateglobalwarming.com
  233. The Learning Curve by thed00d · · Score: 1

    I read this somewhere along the way, so I'll regurgitate it here. A study was done on people who had never used computers before. What they found, was that the platform OS didn't matter, be it Linux; Windows; or MacOS. They each had their own learning curves, and regardless of the operating system they had just used, moving to a new OS did not reduce the learning curve by much for that OS. The study also observed that regardless of OS, the subjects were usually against changing, due to the learning curve. It also noted that MacOS had the lowest learning curve (this was circa MacOS 9), and Linux had the highest learning curve. If I could remember where I read it, I would link it... maybe someone else knows.

    So, I guess we could infer from that study, that there will always be Microsoft people: because they don't want to learn anything new; And there will always be Linux users: because they like a challenge; And MacOS 9 users are just lazy...

    --
    http://www.accelerateglobalwarming.com
  234. What?! by TheLastUser · · Score: 1

    The author says "usinesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions. Windows wins."??

    Are you sure that he didn't say it the other way around?

    consistent - Within a Linux distro one usually finds very good consistency, although the pace of change of Linux sometimes means the changes are greater than what one finds in a new windows release. When's the last time MS improved the cmd window, as opposed to the last time GNU updated gnome term.

    predictable - not sure what this means, maybe the author is saying that the Linux interface doesn't look 100% like his NT box so its impossible for anyone to figure out where explorer is.

    scalable - Windows is more scalable than Linux/unix? Really?

    self-contained - Windows comes with everything you need and Linux doesn't? You mean, like drivers?, like a compiler? Like image manipulation software, like an office suite?

    This guy is on crack.

  235. Already happened... by Tassach · · Score: 3, Insightful
    My conclusion: Linux needs commercial(-grade) software
    It's already there, at least on the server side. For instance, every major database vendor except Microsoft officially supports Linux. Apache is the de-facto standard web server for every non-Microsoft development shop. Samba is a viable replacement for a windows file/print server and is an adequate replacement for a Windows domain controller in many environments. And so on...

    The real killer app for widespread acceptance of desktop Linux would be Microsoft Office (or a 100% work-alike). Openoffice.org and Evolution have come a long way, but they're only (IMHO) about 85% there in terms of replacing MS-Office.

    The other thing which would drive acceptance of desktop linux would be the availability of games. If Joe User could walk in to Best Buy and see that all the popular games are available in Windows and Linux versions, he might consider switching. As it is now, even hard-core Linux geeks usually have a Windows partition for gaming.

    As an aside, Given the success of live CD distros like Knoppix, I'm suprised that game makers haven't considered releasing their products under a custom bootable Linux distro.

    --
    Why is it that the proponents of "one nation under God" are so eager to get rid of "liberty and justice for all"?
    1. Re:Already happened... by EvilTwinSkippy · · Score: 2, Insightful
      No, what is really needed is marketing.

      Right now all marketing for Linux paints it as a server OS. Ask any John Q. Random about Linux and the first thing they think is either "Tree Hugging Unix Guy" or "Server."

      You can develop software till the cows come home, but John Q. Random doesn't buy it until he a) knows about it, and b) can find it in the store.

      And it better be in a shiny, colorful, shrinkwrap package.

      You have to remember, Apple and Microsoft started off with some pretty humble products. What got them where they are today is not technical prowess. It was knowing how to get their products into the retail channel.

      --
      "Learning is not compulsory... neither is survival."
      --Dr.W.Edwards Deming
    2. Re:Already happened... by Kent+Recal · · Score: 1

      What got them where they are today is not technical prowess. It was knowing how to get their products into the retail channel.

      The "retail channel" is crumbling.
      Few people actually go and buy software in boxes nowadays.
      Even fewer will do that tomorrow.

      You know, not so long ago, someone came up with something they call the intarweb or so. It works like so:

      1. Go to shiny www.bigripoff.com
      2. Click on shiny product icon
      3. D/L and try
      4. Come back, enter CC, get serial number
      5. Unlock and be done...

    3. Re:Already happened... by Anonymous Coward · · Score: 0

      I'm not trying to flame or anything, but doesn't WINE (as well as some program designed simply to implement Office compatibility on Linux) offer the ability to install Microsoft Office onto Linux. Granted I haven't used it yet as I haven't gotten around to installing WINE, but I haven't heard any of any problems with using Office in Linux.

      Are there any legal issues with using Microsoft Office in a Linux emulator.

    4. Re:Already happened... by chaosmind · · Score: 1

      Find it in the store? Ain't gonna happen.

      Remember about 2-3 years ago, when you could pop into a CompUSA and see a couple racks filled with Linux distros?

      Not anymore--now that same shelfspace is selling antimalware for Winderz. Think about it from the retailer's point of view: is this Linux thing going to help or hurt our Photoshop sales? Our antivirus software sales? Game sales?

      It's back to the trenches, much like it was in '96-'97 when GNU/Linux/Apache snuck its way into IT. Now we've got to do the same thing in the user trenches (schools, businesses, nonprofits, graphic design shops, etc.). And as someone has mentioned before, it's the F/OSS applications that we can run on Mac + Winderz that ultimately solicit switchers: Firefox, GIMP, NVu, Scribus, etc.

    5. Re:Already happened... by tokabola · · Score: 1

      The product you are referring to is "Crossover Office", a commercial fork of WINE. I'm not sure about any legal issues, it may be a violation of the EULA for MS Office, but I don't think so. I've read that you won't be able to update Office under WINE (or Crossover Office) though, MS's update service checks specifically for WINE and blocks updates when it finds it.
      Tommy

      --
      Open Source for Open Minds
  236. He's right, just for the wrong reason by andy_geek · · Score: 1

    I don't think Linux is un-brandable, un-sellable. The real reason that Linux (or sadly OS X) will never beat Windows lies in the reality that the best technology doesn't always win.

    Linux (and to a much lesser extent, the Macintosh) are populist movements which have produced deliverables which are at worst on par with and at best far exceeding the quality of Microsoft's products. The problem is that Microsoft a) doesn't need to rely on populism since it has a monopoly, b) doesn't need to innovate because it has a stranglehold on the market and c) doesn't have to worry about looking over its shoulder for competitors because it knows that the vast majority of computer users just don't care.

    That is the thing that really sticks in all of our craws, since we all care so deeply about our destkop environments, our platforms, our shells and the like. But Joe Blow doesn't giving a flying flounder about open standards or browser vulnerabilities or even clunky GUI metaphors. They're used to it, it (generally) does what they want it to. They have no reason to change.

    There's always going to be a (thankfully growing) minority of users who are heavily invested in using OS's and environments that are more well-rounded, more secure, more stable than Windows, and thank heavens for that. But the truth is that the "who's going to beat Windows" ship sailed a long time ago, and the geek community would be much better-served to accept that and move on. It doesn't mean that innovation in the OS space needs to die, but it does mean that we need to be realistic about why we want to innovate. Because if we're in it to change the world and take Windows out of the equation, we're setting ourselves up for bitter failure.

    --
    "Don't matter how New Age you get, old age is gonna kick your ass." - Utah Phillips
  237. Infoworld won't last another year.. by mabu · · Score: 1

    Poor Infoworld... used to be a great, important publication in the industry. Now it's a rag pandering to an ever-diminishing cluster of advertisers. Have you seen the magazine recently? It's shrunk so small it looks like a pamphlet. I refused to renew my subscription more than a year ago, but they still keep sending it to me. The only thing sadder than the publication's futile attempt to stay in business, are some of the ridiculous claims they assert.

    Linux is in fact, a very viable platform. Tivo being a great example, among many others.

  238. Infoworld, Bah! by Greyfox · · Score: 1
    They're the National Enquirer of the IT world. It's not that Linux won't kill Windows on the desktop, it's that Linux hasn't started killing Windows on the desktop yet. I'm seeing a lot of big companies just starting to dip their toes into Linux servers now. Once the IT managers get comfortable with that, people are going to start looking at Windows licensing costs on the balance sheet and start to wonder if it's really necessary to be sending Microsoft that fat check every year. KDE and Gnome are both already quite usable desktop environments.

    Linux doesn't even have to be as good as Windows -- it just has to beat the spread, which in this case is a 6 or 7 digit price differential. People say "Oh but you still have to pay for support!" but big companies are paying for support for Windows already. Any company that has an IT department that does system installs and end user support could just as easily be employing Linux trained people as Windows trained people. Your support costs won't change based on whether you're using Windows or Linux.

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

  239. Um, not quite... by gillbates · · Score: 1

    From the article:

    You can code with the tools of your choice and in the programming language of your choice, and unless you stray too far from the rule book, everything you create will interoperate with everything others write for Windows.

    As a "former" Windows programmer, this is absolute bunk. In the first place, I've found that with the exception of Visual Studio, the development tools available on Linux have always been of higher quality than those available on Windows. Furthermore, Windows is typically the last platform for tools to be ported (consider Tcl, Python, Bash, gcc, etc...) But worse to get two applications to interoperate in Windows requires (using the "recommended method of OLE"):

    • Writing a program with VB or VC++, using OLE. Even the most basic communication takes a few hundred lines of code.
    • You have to register the OLE object with the operating system
    • You have to instantiate an object of the particular class you need.(i.e. Word or Excel)
    • You then issue cryptic commands to the object to get it to do what you want.

    Compared with Linux, which requires:

    • A pipe operator.
    • Maybe a shell script.

    Windows apps don't interoperate with each other unless specifically designed for such. The UNIX design philosophy makes interaction standard. But what is even more embarassing is that for Windows' lack of cooperation, it has far more security holes than Linux/UNIX, even though the Linux/UNIX model has far greater potential for abuse. (Consider a random user typing: cat /dev/zero > /dev/hda)

    --
    The society for a thought-free internet welcomes you.
  240. suicide is the only option by UlfGabe · · Score: 1

    if windows continues to commit suicide with its liscencing and heavy handed approach to business linux won't have to do anything.

    We won in Brazil, we can win elsewhere.

    --
    Check journal for info on Anti-TextBook, an idea by me.
  241. Never say never by humungusfungus · · Score: 2, Insightful

    I'm sorry, am I the only one who sees the words "never" and "no matter what" in a article about technology trends and just passes it by?

    Will someone please tell such authors that to say "never" gives them away as having:

    a) no sense of history, tech-related or otherwise
    b) no imagination
    c) no clue
    d) all of the above

    Yeah, we'll never need more than 640k either, right? Riiight.

    --
    No sig.
  242. Re:I think he's WRONG by Anonymous Coward · · Score: 0

    Large number? What fucking large number? Almost every corporate desktop I've seen is Windows based. You linux fatties are getting delusional.

  243. Linux is not an OS by Nikademus · · Score: 1

    You all seem to make the same fundamental misconception:
    Linux is _not_ an OS, it's just a kernel, nothing more, nothing less. It does not control how your applications behave, but just provides a means to control your hardware.
    GNU is more of an OS.

    This was my first troll post on slashdot :)

    --
    I gave up with the idea of an useful sig...
  244. ReactOS by Anonymous Coward · · Score: 0

    That's why http://reactos.com/ was born: if you can not beat your enemy...

  245. You couldn't be more right. by cbreaker · · Score: 1

    I see some of the replies to your post are very flamatory, which is unfortunate.

    Windows is not consistent. Meaning, without a bunch of tinkering around, the UI is a lot different. They changed the start menu, the control panel, the login screen, the theme.. just about the only thing that's the same is the minimize, close, and maximize buttons.

    If you compare Windows XP to Windows 2000, or KDE to Windows 2000, you'll probably find that KDE is a lot more similar.

    Beyond that, Windows may be easy for us geeks to use but it's NOT for the end users. You show me ONE, *one* home user that hasn't managed to fuck up their computer just by using it (not deleting stuff) then I'd like to meet this person. Seriously - all you do is browse and you get spyware, EVEN IF YOU NEVER CLICK YES to a dialogue. There's been so many automatic-install vulnerabilities in IE that it takes zero user interaction to get infected with the shit.

    Just like any other "computer guy" out there I'm forced to fix friend and family computers all the time. Sometimes it takes hours to clean up someone's machine after spyware has ravaged it, and it's never been updated.

    The funny thing is that most people just don't install any software anymore with the Web. Sure, they might need Office installed. But most users just do e-mail, and browse. And because of this, the OS is becoming increasingly marginalized. If all you do is browse, play java games, and do e-mail - Linux is a lot more "works out of the box" these days then Windows.

    I've had trouble getting XP installed on so many machines, that I still think it's funny when someone says it's so much easier and reliable to install it then a modern Linux dist.

    --
    - It's not the Macs I hate. It's Digg users. -
    1. Re:You couldn't be more right. by ninewands · · Score: 1
      quoth the poster:
      Beyond that, Windows may be easy for us geeks to use but it's NOT for the end users. You show me ONE, *one* home user that hasn't managed to fuck up their computer just by using it (not deleting stuff) then I'd like to meet this person. Seriously - all you do is browse and you get spyware, EVEN IF YOU NEVER CLICK YES to a dialogue. There's been so many automatic-install vulnerabilities in IE that it takes zero user interaction to get infected with the shit.

      Just like any other "computer guy" out there I'm forced to fix friend and family computers all the time. Sometimes it takes hours to clean up someone's machine after spyware has ravaged it, and it's never been updated.

      This is a serious situation and a major imposition on geekdom ... so I put a price on baling out relatives' trashed machines ...

      I tell 'em "I'll fix it by installing Linux and I'll admin the box remotely from my home office. You do NOT get root access and you cannot install anything anywhere except in your $HOME. Your other option is to pay a shop to fix the problem you caused because I don't do Windows."

      Works every time ... I do zero support for family except on my wife's Linux box. It's nice to live in a Microsoft-free household without having to pay for Apple hardware.
  246. Too many distros... by badzilla · · Score: 2, Interesting

    Windows has the advantage that there is lots of it. My wife doesn't really like computers but has learnt to use Windows so she can do stuff she wants, e-mail her friends and so on. When she visits her sister she can leverage those same skills to use her sister's computer, since that also runs Windows.

    The same situation would be unlikely in a Linux world - if my wife had Ubuntu with Gnome and her sister had SuSE with KDE I just don't think things would work out.

    --
    "Don't belong. Never join. Think for yourself. Peace." V.Stone, Microsoft Corporation
    1. Re:Too many distros... by doctorjay · · Score: 1

      'if my wife had Ubuntu with Gnome and her sister had SuSE with KDE I just don't think things would work out.' CAAAAAAAAAAT FIIIIIIGHT REAAAR

  247. Linux can dominate, *if*... by ChaoticCoyote · · Score: 1

    ...it changes it's attitude. An excerpt from my blog entry earlier this week:

    When I buy groceries, the digital display at the register is running a Windows application to show my purchases.

    At the autoparts store, the inventory system has a Windows interface to a SQL Server database.

    The woman who sells me insurance runs a Microsoft Access application on her laptop.

    To withdraw money from my bank's ATM machine, I use a Windows interface -- I know, because when the ATM crashes, it displays Windows XP dialog boxes.

    I could come up with more examples, but the point should be clear: Businesses survive on vertical market software, and that means Windows. Companies don't buy their core applications at the store -- they go to a value-added reseller (VAR) or independent software vendor (VAR), or even develop the software in-house.

    Linux could compete for industry-specific applications, if it had the tools to compete with Access, Visual Basic, and the other facilities that ISVs and MIS departments rely upon. Ease the transition, provide better tools... in some ways, I think that is what Mono was meant to do, by bringing the .NET "platform" to Linux.

    If Linux is to become universal (even even significantly competitive) in the business world, it needs to understand how that business software is created.

    1. Re:Linux can dominate, *if*... by pandrijeczko · · Score: 2, Insightful
      I could come up with more examples,

      What OS do you have running in that nifty engine management system in your car?

      What's running on those firmware chips inside that neat little broadband router you just bought?

      What's driving that new VoIP PBX system in your office?

      Why does an OS that is free to use need to tell you what its name is?

      --
      Gentoo Linux - another day, another USE flag.
  248. How funny by WindBourne · · Score: 1

    I have been working a contract job (mostly C/C++/Perl) recently where I mostly work on moving windows apps to Linux (needed to enable the apps to be in aircraft cockpit).

    But since I have not been on windows since 1995, I am in many ways a newbie. Well, earlier this week, I had to create a simple windows apps. No problem. So, when going into visual C++, do I do sdk, mfc, atl, managed, etc. etc. etc. I picked sdk as this is a simple app. Since then, it has been battle trying to figure out which calls to which library set works in this. The help in vc++ is a disaster. Absolutely horrible to follow. Of course, I could have used Borland or a number of other compilers but that is different set of widgets with their own set of issues. In the end, I have found that Windows is much more diffcult than Linux even when you go with the MS path.

    From where I sit, it is much easier for Linux to beat Windows at the places that Linux lags, than it will be for Windows to beat Linux where Windows lags.

    --
    I prefer the "u" in honour as it seems to be missing these days.
    1. Re:How funny by Dr.+Evil · · Score: 1

      If you really did Windows programming in 1995, try using dev-cpp from http://www.bloodshed.net/. It operates on a subset of the Win32 api and has reasonable default templates.

      Widgets have nothing to do with it.

    2. Re:How funny by Reptile2 · · Score: 1

      Notice how you don't see too many Windohs apps in something like a jet? I can see it now...."Are we ready to fire the tank round at the enemy tank?" "Yes, but we have a blue screen giveing us some screwed up numbers and letters that tells me to hit ctrl+alt+del to restart?" "Shit, we are so screwed."

      No, I don't mean to say that Linux is problem free, but Windohs has more then too many problems. So why, if all of these problems exist and Linux/Unix are know to be such workhoses, would you want to use anything else? Plus, with these great systems, comes the shell scripts. This to me is one of the greatest parts of the OS.

      No, to me Linux has it hands down.

  249. Sanity check on author by Todd+Knarr · · Score: 1

    Fast sanity check: if Windows is such a superior platform for servers, why is Windows having such a hard time making it into the server room? :)

  250. It's more fundamental than all that by thekingofdiamonds · · Score: 1

    why will windows continue to win out over linux or any other flavor of unix? distribution channels, plain and simple. the average PC user orders their ready-made PC from Dell, Gateway, etc, or buys it prefabbed from the local Best Buy or Circuit City. your everday user is going to be challenged enough installing applications, much less a new OS. having thus invaded the home market, businesses are not going to spend the additional dollars needed to train their employees up on a separate OS, meaning that user-facing OS in most businesses will be windows based....and the trickle-down continues from there.

  251. WINDOWS CANT KILL LINUX by Anonymous Coward · · Score: 0

    is more appropriate

  252. Mainframes and Windows 98 are still around by metoc · · Score: 1

    IBM Mainframes are still around because they still fill a niche in the IT world.

    Windows 98 and even DOS are still around despite Microsofts attempts to get users to upgrade to the latest and greatest.

    Once a platform achieves critical mass it develops enough inertia that eliminating is virtually impossible as long as while compatible (real of emulated) hardware exists. Close systems such as DOS, Windows have shorter lives since drivers, etc. stop being updated, and eventually they will run out of viable hardware to run on.

    Windows, Linux, Macs and Ataris has all achieved critical mass.

    BTW. The definition of critical mass varies with platform.

  253. Don't look now... by Hosiah · · Score: 1

    But at the CompUSA store, I saw Red Hat Enterprise and Suse on the shelf under a sign that said "Linux" . In boxes, with brand names on them, and pricey stickers. It's OK by me whatever the squares want to believe. The one nightmare I have is for Linux to become as popular as Windows, because that would kill it.

  254. /rant by coolGuyZak · · Score: 2, Interesting

    "guaranteed to be available on 100% of Windows systems (sic)"

    1) Win 3.1 is not supported by WinXP.
    2) Just because it is available, doesn't mean it will work /correctly/. Win 9x and ME are emulated within XP, so parts of their functionality don't work. Also, there must be a reason why the "application compatibility wizard" exists.

    Note: Linux does have problems with things working properly, too.

    "A set of APIs and an ABI for writing graphical programs"

    You got me here, I must say. Linux doesn't have any stable graphical APIs and ABIs.

    Oh, wait. I forgot. There are several that run on it though. GNUStep, Qt & KDE Libs, Gtk/2, and (if you are insane) you can even use raw X11. (And the spec for that hasn't changed, and is still supported, for over 15 years).

    Now, it is true that there have been several changes within many of the APIs listed above. However, whenever they break binary compatibility, the major release number is changed. And -- get this -- you can run several versions of the same libraries on the same system. And you don't have to go through DLL HELL to locate the right one. Imagine that. So, yeah, the support is there...

    I'm not saying that Linux is perfect; I'm not even saying it's better. I am saying that you really should know what you are talking about before speaking.

    1. Re:/rant by eclectro · · Score: 1

      Or to put it another way, one of the greatest things Microsoft has promulgated is the myth that any program will operate seamlessly between Windows versions.

      When in fact many programs require different system requirements from the 'standard' system (if there is such a thing in the Windows world) or previous versions break when a new version of Windows comes out. In which case the vendor uses it as an opportunity to sell an 'upgrade'.

      So the reality is not too different from what Linux is now, but perception can mean everything, even if it is wrong.

      Apple does even a better job of 'shepherding' their users to new platforms because they control the hardware better.

      --
      Take the cheese to sickbay, the doctor should see it as soon as possible - B'Elanna Torres, "Learning Curve"
    2. Re:/rant by Anonymous Coward · · Score: 0

      When in fact many programs require different system requirements from the 'standard' system (if there is such a thing in the Windows world) or previous versions break when a new version of Windows comes out. In which case the vendor uses it as an opportunity to sell an 'upgrade'.

      A standard, to the Win32 SDK, application, (Kernel,User,and GDI calls) will not break between windows versions. Period. It's when developers, and companies get lazy and start using the extra spiffy libraries MSFT releases to make "life easier" (or, *gasp* 3rd party ones!) that of course aren't going to be there 100% of the time, that shit starts to break between versions of win.

      Bitch at the software vendors, it's their fault. I'd be almost willing to suggest they do it on purpose.

    3. Re:/rant by coolGuyZak · · Score: 1

      Bitch at the software vendors, it's their fault. I'd be almost willing to suggest they do it on purpose. I know I shouldn't comment on this, but Microsoft is a software vendor.

    4. Re:/rant by alan_dershowitz · · Score: 1

      GDI is supported by Windows XP, and the ABI is supported too, which means the parent was 100% correct, despite some Windows apps (which, because they were programmed outside the published API specs and either used undocumented API or native calls, don't work.) He was talking about APIs and runtime data structures, while you seem to be talking about individual application support. Linux can't offer individual application support either, if they go making calls to the hardware.

      There is binary breakage in between some Linux kernel versions and some glibc versions. There is ABI breakage between some GCC versions (which is why BeOS/Haiku developers are still on 2.9x.) This is not the case in Windows (again, despite individual app breakage.)

      You admit there is no graphical API on 100% of Linux systems (even X11 is an addon.) Again, GDI is supported on 100% of Windows systems. Linux has toolkits. So what? That in no way addresses his point, of what Windows has that Linux does not. Linux doesn't. Windows does. There are justified philosophy reasons behind this, but that doesn't make either app users' or app developers' lives any easier.

      You claim Windows cannot run multiple versions of DLLs. Windows does in fact support multiple DLLs. That's why there is a DLL location loading order. It looks in the app directory first before searching system directories. If you've never had dependency hell in Linux (redhat was horrible for this,) you must not actually ever install anything on it.

      I'm not saying Windows is perfect, I'm not saying it's better. I am saying that so far I have not seen any indication that _you_ know what you are talking about. The parent poster was correct.

  255. debating terms by Exter-C · · Score: 1

    This is where people get all up and at em about different claims from different people. At the end of the day linux is only a kernel. Its not an entire operating system. Whilst windows is a full operating system it cant do many of the things that linux, unix, bsd or any ofthe other flavors of *nix can do. There is where unix is strongest and always will be. Windows can have 30 different versions but it will never be as adaptable as unix has been and will always be.

  256. Market Share by nurb432 · · Score: 1

    Much as Apple has a small share. They may ( not trying to start a debate here ) be better, but they will never be 'better enough' to get past the marketing power of Microsoft.

    The battle was won on marketing long ago, not quality. And once the monopoly exists, its damned hard to unseat it even with better products.

    "good enough" while in power, is good enough..

    --
    ---- Booth was a patriot ----
  257. Re:Uh, huh? by MindStalker · · Score: 1

    Isn't Cocoa/Carbon the same as GNOME or KDE. Its not something impossible in the linux world exactly.

  258. name change. by blackomegax · · Score: 1

    name linux "doors" or "curtains" or "that sofa you had lost your virginity on before you gained it back from slashdot" and it might compete with "windows"

  259. The "Average Joe" user mindset... by gbulmash · · Score: 1
    People may not know how to "use" Windows. They just know how to turn on their PC, boot Word, IE, Outlook, and that's it. But they consider that knowing how to use Windows.

    Let's remember that at one point millions of people didn't know that AOL was not the Internet (I can't remember how many times I've explained that AOL was a private network with a gateway to the Internet as one of its many features, not the Internet itself).

    Let's note that Netscape advertises its free "web accelerator" on TV as if it's a great thing, but it actually causes serious degradation to many graphics on the web. People buy the whole "surf up to 5 times faster" and then complain to webmasters that their sites look lousy because they don't know that the acceleration is achieved by the ISP running a highly lossy compression on all graphics at the proxy server.

    As my mom once said: "those manuals would be easier to understand if they used words like thingy and whoozit like we do."

  260. Re:OS X and Java by FyberOptic · · Score: 1

    Someone should mod the parent post out of Flamebait status, as it's far from it, as previous replies to it have pointed out.

    Having been a user of older computers for many years, Java has always been a scourge to me. It was one of those things where I would literally sigh out loud when I'd come across something that used it, because I knew I was in for a horrible experience. Many times I'd just close whatever it was immediately, because it was pointless to try and suffer through it. I could run XP on one of the particular machines in mind, even, but not Java!

    Even now, on a modern speedy machine, I still have no use for it, as a user nor a developer. Software created to "bridge the gap" between platforms is just never what it's cut out to be.

    It's part of the reason why Linux can never be a true platform like Windows has become, because too much of it has been created to just work on anything, making it slow and bloated overall. A program will call a script that runs some interpreted language, which may in turn call another, etc. Granted, this makes for a very configurable system, but generally results in a big performance hit because of all the processes (and processing) involved.

    Windows is only aimed for one type of system, using mostly compiled code, so you get the speed and lower memory usage that your average user wants. Linux can just never have that, not without reworking it to the point that it's not Linux anymore.

    I'm sure hardcore Linux advocates will disagree with most of what I said, either telling me I'm wrong or that their systems "run just as fast as Windows", etc. I've heard it all before, and will never believe it, because it's just not true. I use Linux on some machines myself for various reasons, but my primary desktop machine is Windows. I want no-fuss and the best performance I can get for my general computer usage. So does the average user.

  261. "A bushman from the jungle"? by Artifice_Eternity · · Score: 1

    The easiest way to illustrate this peacock argument is to take a bushman from the jungle and get them to figure out what a computer does.

    Why would a bushman be in the jungle?

    Bushmen live in the bush, i.e. the Kalahari Desert.

  262. Take off your linux blinders by Kpt+Kill · · Score: 1

    http://linux.slashdot.org/comments.pl?sid=139922&c id=11715979 works for viruses too. The whole mentality that linux is immune because its linux has to go. As soon as you start switching over Joe User, you will be switching over his carelessness and his ignorance. The box says click, he will click. The box says root, he will type it in.

    you say it will be their fault then, however, these are the people you are trying to convert. Its grandma who can't tell the diffrence between ebay.com and ebay.com/redir.dll/http://www.scamsite.com.

  263. Stop The Linux Bus! Reality Check by mpapet · · Score: 1

    Like many /.'s, I'm a big fan of Linux Everywhere on Everything.(TM) BUT,
    Arguing technical points is fine and good on ./. In the real world where PHB's make the decisions in the business market and individuals make decisions in the consumer market, Linux has a long, long road ahead.

    1. M$ Longhorn. To the PHB's and consumers it will look like it kicks ass. Just because it's not released yet, the media is giving Linux some praise because it creates tension and conflict. As soon as Longhorn releases, Microsoft will be certain to make Linux look like a stinking pile of crap. And the media who takes Microsoft's money will spread the word because it fuels the tension and conflict.

    2. GIVE USERS A COMPELLING REASON TO SWITCH TO LINUX and they will. I don't care which PC reseller supports Linux. They won't sell many unless there is a compelling reason to buy. Linux servers are a fantastic example. Features, functionality and price are there driving the adoption. What's it going to be on the desktop?

    --
    http://www.maxineudall.com/2010/02/should-economists-be-sued-for-malpractice.html
  264. Dependencies & package insconsistancy by retro128 · · Score: 3, Insightful

    I think the one thing that's really slowing Linux on the desktop uptake are all the dependency nightmares and package inconsistencies. Yeah, things like yum, apt-get, emerge, et al have made things a lot easier, but they are not perfect. Last night I was trying to apt-get (I hate yum with a passion) proftpd on my FC3 box and no matter what I tried in the config, users could not authenticate - I kept getting "bad password" in the logs. I ended up compiling from source and guess what, it started working. Apparently the binary package had something funky going on with its UNIX auth module.

    And then there's this thing that happened yesterday. I'm experimenting with groupware and picked up Conflux. My boss walks in and sees me looking at the demo site they have, and says "that looks cool, install it". It was winding down to the end of the day, and I say "Eh, I'll do it tomorrow", to which he says "You just can't click on the "Install" icon?"

    That's when I told him the tale of how I had to get the following operational on the system first: apache2, python, mod_python, postgres, and a smattering of other libraries. Then I had to write the config files to make it all work together. And I've never worked with postgres, so I don't even know how to define users or a database in it yet.

    The moral of this story is that installing software on any flavor of Linux is still a royal pain that Joe user won't tolerate. Without a unified base distro and a universal package management system, that will never change.

    --
    -R
    1. Re:Dependencies & package insconsistancy by chromatic · · Score: 1
      The moral of this story is that installing software on any flavor of Linux is still a royal pain...

      That's a very general moral. I expect it's more that installing the software you tried to install on the machines you use running the distributions you run was painful.

    2. Re:Dependencies & package insconsistancy by destuxor · · Score: 1

      I completely sympathize. I run an Apache/PHP/SSL webserver on my Gentoo desktop (!!) and getting Apache to work with something new can be a bitch sometimes. However, I must point out that Apache is also run on Windows, so if you wanted to run all of those web applications on Windows it'd probably be even more difficult.
      I wish there was a package manager just for Apache that would work on every platform, unfortunately there isn't.
      When you install PHP separately from Apache in Windows the installer reports that it lacks the ability to change Apache's configuration to support PHP. Doesn't this seem strange to you? What, 64% of all webservers use Apache, yet some fuckass coder working on the PHP project doesn't find time to grab the config file in Windows? In WINDOWS?! Windows is supposed to be all about automatic configuration -- WTF is this about editting a config file buried in the program files?! Obviously I'm being sarcastic. When you're managing server applications, you have to be ready to do some tweaking on your own.
      Heh heh, now for us Gentoo'ers, editting a couple configuration files doesn't scare us. Not at all. Especially after a single package manager put all the config files/libs/binaries in a predictable location. If you've never heard of portage, you read up on the philosophy of Gentoo. But as we all know, "Gentoo is a hackers OS" or what the fuck ever. I thought the installation was pretty easy...maybe I'm just a geek.

    3. Re:Dependencies & package insconsistancy by retro128 · · Score: 1

      My opinion about that? *NIX programmers in the Windows environment don't like to reinvent the wheel, which is understandable. But they are also fish out of water. The result is that programs like Apache and PHP are patched up just enough to run, but the config files are pretty much all the same. The upshot of this is that it allows decent portability between platforms. You want to take your Apache Windows server and move it to Linux? No problem, just copy the config file and htdocs. But what that means is that regardless of the platform you still have to read through pages of docs to find out what all the options in the config file do. There is guesswork at times and syntax errors can be oh so fun to hunt down. And graphical frontends are not perfect...There's always the chance they'll munge your config file or blow out some of your custom stuff.

      Now overall, the security and reliability of *NIX servers are worth the hassle for me, but let's just say I can get a Windows server up and running a lot faster, and without having to deal with arcane config file syntax.

      --
      -R
  265. Yes, it can! by Humorless+Coward. · · Score: 1

    user@box:~>ps -A
    PID TTY TIME CMD
    1 ? 00:00:04 init
    ...
    3286 ? 00:00:04 sshd
    3300 ttyp02 00:00:05 wine
    4800 pts/7 00:00:05 ps
    user@box:~>kill -9 3300
    user@box:~>ps -A
    PID TTY TIME CMD
    1 ? 00:00:04 init
    ...
    3286 ? 00:00:04 sshd
    4806 pts/7 00:00:05 ps
    user@box:~>

    See?

  266. Differing goals by TheRealStubot · · Score: 1

    Q: Why does Linux not dominate the market?

    A: Linux geeks do not want it to!

    I write code for both Windows and Linux, and I'm sure I'm not unique in this endeavor. My perspective on all of this is:

    Linux users/developers want to maintain a niche market more than they want to expand to a bigger market. The Slashdot crowd, on their high horse, wave the banner of technical superiority, bashing Microsoft on every front, no matter how insignificant. Microsoft spends it's energy in a much more productive way, developing and marketing apps and OS's that people buy. I didn't say the apps and OS's were better, or faster or more secure, only that they were desirable by more than a handful of geeks.

    Linux refuses to learn the lessons that Microsoft learned long ago. Granted, Microsoft has a reputation of doing some unethical business practices, and the Linux crowd is not willing to stoop that low to gain market, which is admirable. Linux developers tend to believe that embracing every new technology will gain them market, this is clearly not the case. Hell, Linux strength is it's biggest weakness! All the diversity has created a UI that is mayhem. There's not even a standard cut and paste between applications, no consistency! End users require, nay DEMAND consistency in their user interface. Windows provides that, and will dominate as long as it does.

    I won't even get started on the differences in writing applications and installing them between the two systems, because it's too painful and close to me, but I will say this:

    If I could choose between platforms to develop on, I would choose Windows over Linux 9 out of 10 times.

    A message to Linux geeks/gurus/developers: Please stop wasting your time comparing OS's, bashing MS and complaining about the unfairness of it all. Put your money where your mouth is and deliver some progress. You wanna topple Microsoft, you're not going to do it with words, regardless of how inflammatory or true they are. Every minute you rant instead of developing a decent method of IPC, Microsoft gets a little bigger, a little richer, and little smarter.

    --
    "I'd rather win in an ugly car than lose in a pretty car" - Jari Lahdenpera
  267. Replace windows by NOT being a platform by podperson · · Score: 1

    Perhaps Linux can replace Windows without becoming a platform.

    What operating system does your car run? How about your toaster? How about your house's electrical system? How about your phone?

    We're used to the concept of cars, electrical devices, and phones "just working", perhaps the key is to get computers to the point where "software" "just works" on "computers" the way "computers" "just work" when you "plug them into the wall".

    Note that this is not the same as the "appliance computer" idea, since that said everyone had to use the same Model-T computer.

    It's also not the same as the Java Virtual Machine, since that said everyone had to use the same Model-T virtual computer.

    Some of the more recent Debian-derived distros (Knoppix being the first prominent case) are going in the direction. Here's some software, stick it in "a computer" and watch it go. Neat.

    There will always be computers used for more specialised purposes that can't be treated as appliances, but the majority of email/web/im/word users could use a nicely configured linux distro and be happy.

  268. its amazing by Anonymous Coward · · Score: 0

    so many "smart" people still dont get it.

    And the people who do get called a troll.

    Too funny :)

  269. Apples Can't Kill Oranges by Onan's+Salad · · Score: 1

    This article was more of a teaser than anything - and it certainly worked considering all the replies on distros, widgets, compiled binaries, etc. ad nauseation.

    I think most users of both Windows and Linux would agree with the meat of the article (what little there was), but would also point out that the article could have just as easily been called "Windows Can't Kill Linux."

    Both have their place. If a person admits that it is cheaper to outfit a business with Windows than with Linux, they have to concede that Linux "...can't kill Windows." If a complete benefit/cost analysis reveals that moving an office from windows to linux generates more cost than gain (with a dollar assigned to inconvenience for people like Gladys in HR), then it's a simple fact that Linux can't kill windows.

    My question is, since when was linux trying to kill windows? By its very nature, linux is a cooperative venture; 'killing' windows implies that it's a competitive venture.

    This guy could have just as easily wrote an article titled, "The Sky is not the Ground." Or maybe I'll publish my own article: "Apples Can't Kill Oranges." That would certainly get the Johnny Appleseed zealots talking

  270. Mod Article -1 Flamebait by SpecBear · · Score: 1

    Y'know, several years ago I read an article making a similar point, except it was a joke:

    MICROSOFT SAYS RIVAL LINUX HAS NO FUTURE, SO LINUX INDUSTRY WILL STOP NOW.

    Seriously, I think this guys has his head up his ass. He manages to point out some of Linux's weaknesses, but he doesn't offer any justification for making the leap between "these are some problems facing Linux" and "these problems cannot or will not ever be fixed." But I'm guessing he's not being paid to be right so much as he's being paid to attract attention.

  271. business lingo by pikine · · Score: 2, Informative

    Many comments so far criticise the article with a technologician's understanding of the words "scalability", "consistency", "predictability", and "self-contained." However, we have to realize that this article is targeted to businesspersons. These words have a different understanding in a business sense. I try to point out the "business meaning" here and reassess Linux on those merits.

    If you don't care about businesses using Linux, then what I say here is a waste of time for you, and you can skip the rest.

    1. Scalability does not mean excatly if a computing cluster can scale from a few nodes to a huge number of nodes. But rather, in a more general sense, can I scale the system from one solution to another solution? In particular, if I change my business model, can my solutions scale with me?

      This also includes scalability in size as one factor. As the business grows, the solution must also scale in size, therefore the underlying platform must also scale.

      The problem with Linux here is that there is a high initial cost of deployment in labor, though justified by the software being free and low maintenance thereafter. However, the high cost of labor in deployment must be paid again whenever a new solution is deployed. So Linux is not scalable for new deployments. The fact that many businesses, especially those migrating from Windows, need a pilot program already says that Linux costs too much.

      Windows by itself also has a similar cost of labor for deployment, but asset management solutions exist that lower that cost. (OpenCountry is selling software for Linux asset management though, but don't accuse me of putting a plug here. You did not read this text inside the parentheses.)

    2. Consistency, in the sense that if I learn one thing about an application, then it also applies to another application. People in business do not have time to learn everything over and over. Training only makes sense because supposedly you learn everything you need to know.

      The difference in distributions is only one minor factor to inconsistency in Linux. The problem is that user experiences are different for applications like OpenOffice.org, Firefox, GNOME desktop environment, KDE, etc. A trick or two that you learn to do is not "portable" to another application.

      There is no hope for consistency if open source developers only care about programming for their own itches. Fortunately, many developers are willing to stick to a certain guideline if it means more people can benefit from the program.

    3. Predictability is the ability to answer for "what if" scenarios. Although systems crash unpredictably, but it has become a general expectation that all systems fail at some point. One must be able to tell "what if that happens?" Who do you turn to in order to get help? For commercial products, including commercialized Linux distributions, you turn to the vendor from whom you bought support. If you reaped a free version of Linux distribution, all you can do is search the web for an answer. It is unpredictable where you get your answers, how much time it takes to get it, or if you'd even get your answers at all.

    4. Self-containedness, if you take that to mean all-in-one packaging, then Linux distributions are much more feature rich than a Windows installation CD. However, it should be taken to mean "what solutions can I buy for $10,000?" You may say "infinite" because "Linux is free." But that also means you can't buy a free Linux solution with money. An ideal business is that you invest in some money, you get profit from it, then you reinvest the money for growth, which earns you more money more quickly. Money is self-contained; Linux is not contained in money.

      Again, commercial Linux distributions come close by pulling Linux into the circle of money. Linux vendors should go further to sell prepackaged solution to business. Heck, they should even sell a business model if they know how. Notice that Microsoft actually

    --
    I once had a signature.
  272. Other languages for Mac OSA scripting by tepples · · Score: 1

    [With Windows Scripting host] you can choose what language to use (unlike AppleScript, which forces you to use Apple's horrible proprietary COBOL clone).

    Do you still feel the same way about AppleScript after reading this page?

  273. A dozen thinks break up? by nnappe · · Score: 2, Insightful

    First: Exactly what things break up when you do anything to your kernel (except binary drivers, but then the problem is binary drivers).
    Second: Do you really think that it could do so well in the "server niche" if any modification in the kernel broke things?
    Third: What has gui consistency to do with the kernel?

    1. Re:A dozen thinks break up? by Anonymous Coward · · Score: 0

      Your first point is flawed. A binary driver shouldn't break because tho interface contract should not have allowed it to. See Software Engineering 101.

  274. Developers first by Xtravar · · Score: 0

    Linux will capture developers first...
    Then everyone else has to follow for the software. And the support.

    Linux will not capture the average user first, but when the average user needs help/cool software in 5-10 years, and none of the average user's nerd friends/children can help, this is where conversion will happen.

    --
    Buckle your ROFL belt, we're in for some LOLs.
  275. What they don't understand... by Anonymous Coward · · Score: 1, Insightful

    ... is that Linux is no enterprise that depends on success. It is just running and running and running and running... no matter what its market share is. Linux' growth depends on a few enthusiasts. And it is growing steadily. Right now, I barely see any need for any major improvement. There are even some great games available under the GPL (asc, wesnoth, crafty, lbreakout2, ...)! I can control my mobile phone through Linux, I have a complete desktop, more than one complete office suite, multiple browsers (incl. firefox for which there are a lot of excellent addons, eg. a scrapbook), half a dozen or even more excellent mail clients, a lot of nifty tools incl. compiler-compilers like yacc for parsing of formal languages, graphics processing, scripting, lots of programming languages, LaTeX, vector drawing programs, desktop publishing, rendering, video, sound, sip, skype, icq clients, desktop search, Google mail checker, advanced security implementations, a working and secure multiuser environment, a great printing support that does not need any configuration, access to windows file shares, access to UNIX file shares over ssh, kerberos, lvm, software raid, hibernation, and endless more...

    And the best of it: all of these utilities are usually installable in a default way. On Gentoo Linux, for example, just enter "emerge skype" and Skype is installed. Under Windows you will get all sorts of spyware and each utility must be fetched from the net by hand.

  276. Good Title, Bad Article. by Zoarre · · Score: 1

    Linux and Windows are manifestations of different computing cultures and, dirty tricks aside, I don't see either cleansing the other from the face of the Earth. It should be that way; diversity is important for data to evolve.

    That's not to say that Windows and Linux can't be responsible for their own destruction, or that one can't outlast the other.

    --
    "People with opinions just go around bothering one another." -The Buddha
  277. Re:The best way? Hardly. by Anonymous Coward · · Score: 0

    For the record, I wrote the parent.

    No linux variant works "out of the box" if your hardware is slightly different than what you'd find on a 5 year old pc.

    And yes, you do have to compile either the kernel, modules, or the drivers routinely. Look at the instructions for LIRC, nvidia and ATI graphics cards, and wireless networking.

    Sorry, I guess downloading drivers is really difficult. But you know, when you buy network cards "out of the box", there's usually a windows driver disk in that same box, so there's no need to download anything.

  278. platforms by Ham_belony · · Score: 1

    That is why I stick with my commercial unix and keep linux on the side for none critical environments.

  279. This is not a technical issue!! by Tester01 · · Score: 1

    "A platform is a platform only if its stable" Wrong. A platform is a platform only if someone buys & uses it. Windows vs. Linux is not about technical superiority or stability. It's about market share and the ability to obtain greater market share. In the end, nothing else really matters.

  280. Windows is alive - the reason is not technical by Anonymous Coward · · Score: 1, Insightful

    While everyone is making technical arguments why Windows can't be killed, there is a probably even more important reason which has got nothing to do with technology.

    It's all about society. Namely: Microsoft is seen as one of the greatest corporations ever, Bill Gates as a rock star among upper management decision makers around the world.

    These CEOs, CFOs truly believe that Microsoft is the most advanced IT company in the universe.

    If a Microsoft product fails, well - that's what technlogy can do at this time. If Microsoft can't make it better - noone else can.

    Most IT Directors will not argue with this. Not only because they know that they will never be able to convince their bosses otherwise. Windows for upper management in IT is like life insurance.
    Noone ever was fired to deploy Microsoft products in the corporate world. If you run your shop with Microsoft, you will never have to face suspicion from the CEO, that you may have made a big mistake and you are ruining the company. If in the corporate world something goes wrong on the Microsoft platform, you can always explain it. And upper management will understand.

    If for nothing else, because an often used corporate weapon against any other third party supplier does not apply to Microsoft: noone can afford to sue them for demages, lost productivity.

    Try that with Linux or any other open source software. If anything goes wrong, the very first question will be to argue with your judgement about not using Microsoft.

    IT directors are the least likely persons to change this. They are simply managers, not IT guys anymore. If their primary focus was in technology, they probably would not have become IT directors.

  281. Here's why linux will always be a small niche by Anonymous Coward · · Score: 1, Interesting

    The reason linux will never penetrate the desktop market beyond single digit percentages is that the Linux system model is fundamentally flawed.

    Under linux, the operating system is the commodity. It's free, and comes in a wide variety of distributions tuned to different purposes. You can take linux, and do anything you want to it.

    The problem is that under linux, not all hardware is created equal. Some network cards, particularly wireless, take more effort to get working than others. To unleash the full power of an NVidia or ATI video card, you have to compile new modules, etc.

    In other words, under Linux, hardware is not a commodity. So to get a linux box working, you have to shop for specific models and revisions of the hardware device you want.

    Under windows, all of the hardware is commodity hardware, but the OS is not a commodity. The OS is a rather expensive part of the machine, but this cost is easily absorbed byt the fact that you can build a perfectly functioning windows machine buying the cheapest of every part you need without having to worry about whether it will work - if the hardware didn't work under windows, they wouldn't sell it.

    Interestingly, Apple has avoided this problem by selling you the OS with the hardware. But this tends to make Macs more expensive than PCs, which means they can't compete in certain segments of the market.

    I think the future of linux is jeopardized by competition from Macs, not Windows. If you want to see desktop unix, forget linux, check out OSX.

  282. Re:Uh, huh? by MindStalker · · Score: 1

    I didn't say it was as complete, but generally he same idea as they are both GUI APIs. Or does cocoa/carbon provide some sort of mystical thing never heard of.

  283. Missed the entire point by Anonymous Coward · · Score: 0

    The problem isn't porting between completely different platforms, the problem is that Linux, itself, has no platform. It is a kernel, nothing more. GNU is wrapped on top of it, but between distributions there is little consistency as to what makes the platform. Silly things like where to stick programs, or how to configure menus, change drastically.

    Linux's advantage and disadvantage, at the same exact time, is choice. I'm sure you like to be able to have some obscure window manager that does things Just Your Way(tm), and the ability to do that is a beautiful thing. But user applications also are developed against specific window managers in order to be able to reuse large amounts of functionality. The end result is that you need the libraries for every window manager and widget set up to date just so that multiple applications can display what they consider to be a button to the end user.

    Choice is good, but choice is also complicated. It's the apps, stupid. Most users don't give one flying fuck about how their system is configured, or how they can completely change that, aside from their cute background picture. But by having a constantly moving target and shifting intertwined dependencies that you can never depend upon you significantly complicate the development and deployment cycle. Simply put, you will scare away the commercial developers which offer the applications that users look for.

  284. infoworld = propaganda!! by v3xt0r · · Score: 0

    do we really care what infoworld says?

    why not just listen to cnet and news.com.com, etc., like some lamebrained CIO corporate scrub who can't grasp the concept of interoperable co-existence.

    the debate about windows vs. linux is as pointless as digital vs. analog.

    It's all subjective to the user, the environment, the purpose of use, budget, and experience.

    Use both, why limit your capabilities!

    --
    the only permanence in existence, is the impermanence of existence.
  285. Re:The best way? Hardly. by delire · · Score: 1

    it's ok, you just haven't taken the time, or have the interest to actually do some research. saying "No linux variant works "out of the box" if your hardware is slightly different than what you'd find on a 5 year old pc." is however simply untrue

    a distribution like Mepis for instance already ships proprietary drivers for nvidia or ati, and simply does work out of the box on a great many portables with wifi cards. i have the responsibility of installing it on 30 workstation machines for a course in game development, thus i did do my research; just like anyone, i don't want to be spending time downloading, or compiling such drivers.

  286. Sly article by unixfan · · Score: 1

    Letter to the Managing Director of Infoworld.

    Dear Managing Editor,

    Today I read an article by Tom Yager, that frankly surprised me. As the president of a VoIP provider I have to keep my head above the water and make sure we are sailing in the right direction. I figured that a managing editor has plenty of "hands on" to understand my view.

    Some 35 years ago when I ventured into computers we did not have much in terms of eye candy. One worked with configuration files and with the birth of Unix it still got more so. It offered a practical GUI, but eye candy was not high on the list.

    Then Windows came along. It was, to some of us, a playground for GUI developers. Not that a GUI is bad at all, but under Windows the efficiency we seek was not there. Over the years Windows has improved, but rather than seeking the best path for users it only seeked the best short term path for Microsoft.

    Corrupt standards they left in their wake soon proved that for a developer or integrator, Microsoft really did not try to be the best it could be, to borrow an army slogan. Microsoft never played in a way that really helped us to use open standards (read; easy to integrate with various other platforms) that makes it easy for us to build our solutions.

    The fact that the combination of eye candy and promised ease of use sold many people on this dream, did not make it any better. True, Windows have improved by leaps and bounds, and is not necessarily bad, inspite of methodically ignoring security and reliability issues.

    But what they have is a behemoth, which includes all the (by them) corrupted open standards, unknown closed standards, tie-down into a technology that we as problem solvers don't really need or want.

    It is comparatively neither reliable, secure, open standard based (for easy integration), efficient or fast, compared to solutions like Linux and the BSD's.

    Now I can see that Infoworld, wanting to hold on to its Windows readers, publishes articles like Linux Can't Kill Windows. It makes them feel better in their choice of platform. I've not looked into your sponsers to see how much is Windows based but it's probably as obvious as it seems.

    What does surprise me is that Tom Yager as a technical director says what he does about Linux. My 14 year old daughter build her own Linux systems. The City of Largo in Florida completely converted from Windows with very little hassle. I spoke with the City Manager and he was ever so pleased.

    People, cities and even governments world wide, are switching to Linux from Windows. Yet he proclaims it's not a Windows killer.

    Microsoft who has never, ever, dropped their prices for anyone, is now not only discounting Windows but is even creating a discount version...

    Not that I care if Linux is a "Windows Killer". In the industry people make their choices. The more correct choices they make, the better they do. The market will settle where it wants to be.

    Linux is winning largely because it makes it easy for us solutions providers to create and support solutions. It scales from wrist watches to supercomputers.

    It's strength is in its undying pursuit of technical perfection. Not in the all mighty dollar.

    This is the fundamental difference between other commercial solutions and Open Source. Look at OpenBSD. It is persistently more secure than the big commercial alternatives. Why? Because its not money driven.

    We see the choices Microsoft has and is making. They so clearly seem to be based on one thing only, provide an as apparent, compelling reason, as possible to use Windows. But then are incapable of delivering what the industry needs.

    Let me expand on that. If a child asks to have a gun. Cries for it. Throws fits for it. Makes any kind of threat for it. You are not going to give that child are gun, now are you?

    Why?

    Because you have some sense of responsibility.

    Even though it would stop all the crying etc, etc, you know that in the long ru

  287. Solution?!?! by sp0rk173 · · Score: 1

    The clean/"simple" (note the quotes, this solution makes sense, but would be extremely difficult to implement) solution to this is to standardize the interface to the html, multimedia, windowing toolkit, etc across all *nix options, and allow different implementation to exist under them. That way a program can call up an html rendering object in a standard way, and the real work will be done with whatever implementation the distribution author/user/sysadmin set up to be used as the back end (khtml, gecko, ghtml, whatever). Developers for third party apps would then have a sane, predictable API to develop for, and the community would still have the choice it values so dearly. I could see this as an extension to fd.o's agenda, if it really is a good idea.

    Note: I'm no software architech, this just seems to make sense to me. Does it to anyone else?

  288. Re:10 years ago : Windws cant kill Unix on servr s by Anonymous Coward · · Score: 0

    Let me get this straight: you want(ed) a Linux box to host antivirus and windows update stuff? Linux dosn't use either of those things, so why would it have support for them? About hardware and software inventory tools I can't comment, because I'm not entirely sure what you're referring to. Possibly some kind of customized database applications?

  289. A few points of clarification. I hope these help. by Amiasian · · Score: 2, Informative

    1) This can be solved by holding down the Command Key and M. It's OS X's standard stroke for minimizing.
    2) Not sure what you mean by this. Command-Tab shifts apps and Command-` shifts windows. Albeit, the later is more obscure, but it is used consistently. Therefore, on OS X, it is standardized. In addition, you can use Expose to that purpose as well.
    3) Sure you can. Open up System Preferences, Keyboard and Mouse, Keyboard Shortcuts Tab and check "Turn on Full Keyboard Access".
    4) You can. Just click the arrow to the left of the save dialog. You'll see your hierarchy. It's sort of like "simple" save vs. "advanced" save.
    5) Au contraire. In the Finder (first off, set the thing to Column view, if you're really into efficient directory browsing) you can Command Click the window title to see the directory tree leading to your current location. In addition, there's the "back" button, which is more a list of previous directory locations browsed, but if you tunneled in to get to where you are, it'd work as you want. In addition, you can drag any directory from the Finder onto the save dialog and have it instantly jump to that location.
    6) There is. It's called "TinkerTool" and it's a free download. However, this one's a valid point. The option should be included as part of the Finder's preferences.
    7) Since 1984, the Mac's used Command-C for copy, Command-V for Paste and Command - X for cut. I'd say that's pretty consistent. Apple's really been strict about functional consistency and I think if an app is built against Cocoa, the copy-paste functionality is included by the library, functioning as described. You'd have to name the manners in which you see it as inconsistent, since it's never been a problem for me.

  290. why is anyone bothering by cinnamon+colbert · · Score: 1

    to reply to anything having to do with the original article, whichis incohernet and poorly written.
    Tom Yager couldnt explain how to pound sand down a rathole without pictures, much less can he say anything usefull about a complex subject like market share for competing computer systems.

  291. Re:I'd like to add... by symbolic · · Score: 1


    I'd agree that there is a lot of variation within the various distros and software versions, but there's absolutely nothing that says a user can't pick one distro and go with it. There's also absolutely nothing that says a user can't wait until the next major release of their distro in order to upgrade, so that everything gets done at once. Following these two options will eliminate about 90% of the arguments I've seen against linux in this thread.

    I'd also be willing to bet that much of the talk of "coolness" applies mostly to things that qualify as 2-minute eye-candy.

  292. Re:how to make a ton of money by Anonymous Coward · · Score: 0

    The 'final, annoying, painful step' from software to product is where there's room in the OS world to take money. Say what you want about Shuttleworth, but he's smart enough to see that, and courageous enough to step into that niche.

  293. Interesting... by HopeOS · · Score: 1

    At least two of the uses you specified, antivirus repositories and Windows Update Service, are simply unwanted overhead for your existing Windows deployment. That Linux is not helping you there is not really a surprise is it? As for your existing inventory software, talk to the vendor. If they did not do anything excessively clever when they wrote it, it may even run under Wine.

    Our company has off-loaded 100% of web-hosting, mail, and file/printer sharing to Linux. The entire company server network runs without any additional attention 9 out of 10 days. We have a single admin managing 50 machines in four states and we have excess capacity. Using Linux where it's strongest is the best way to get a feel for its capabilities.

    -Hope

  294. Why aren't more companies doing this... by wandazulu · · Score: 1

    Google and Tivo are two examples of companies using custom Linux kernels to deliver specific applications. Both are wrapped in boxes that you can just plug in and turn on and they get to work. Having not to pay a license fee to Microsoft presumably drives down the cost to the point where you're just paying for the end product, without the OS being of concern.

    So why don't we see more of this from the likes of Oracle et al, who could be shipping if not custom boxes, custom distros complete with the database, app server, whatever, ready to go. Put disc in machine, x minutes later you have a database server with a kernel tweaked specifically for that task.

    Thus it takes windows out of the equation in terms of ease of use...we've one-upped them because instead of making for a simple installation of windows (oh, and patches patches patches) and then your app, it's like putting a disc into a game console and you just start using it.

  295. OS X. by Amiasian · · Score: 1

    Image editing.
    http://www.apple.com/macosx/features/coreimage/
    Midi sequencing/Audio Editing.
    http://developer.apple.com/audio/coreaudio.html and http://www.apple.com/support/garageband/
    World of WarCraft.
    http://www.apple.com/games/articles/2004/11/worl do fwarcraft/

    None of these are even feasible under any unix-like environment let alone faster.
    http://developer.apple.com/macosx/architecture/

    Granted, it's not Linux or open-source (well, there's Darwin, but anyways. . .) here's an example of a "Unix-like environment" that wins on all the fronts you bring to the table.

  296. Bullshit by theolein · · Score: 1

    "unlike AppleScript, which forces you to use Apple's horrible proprietary COBOL clone."

    OSAX, which is simply a part of Applescript, enables you to use any language which has been made for it. Although it isn't that widely used, Javascript is available for use instead of Applescript. here it is http://www.latenightsw.com/freeware/JavaScriptOSA/ index.html

    It's just WSH, where, at the moment, you can use VBS, JScript or Perl.

    It shows how much you know, and why you're posting as an AC

  297. Right... by ztwilight · · Score: 1

    And VHS will never kill Betamax. Oh, and DVD will never kill VHS either. And Windows will never have more marketshare than Mac. And OS/2 will come back from the dead.

    --
    Who moved my sig?
  298. Toyota Can't Kill Honda by AvantLegion · · Score: 2, Insightful
    Pepsi Can't Kill Coke
    NBC Can't Kill ABC
    AMD Can't Kill Intel

    The question, of course, is, "so?"

    A product doesn't have to kill its competition in order to be successful. In fact, they have a word for that...

  299. Easier than you might expect... by cabraverde · · Score: 2, Insightful

    If those who are as technically literate as this don't get Linux, how will the "average consumer" ever get it?

    Easier than you might think, precicely because the average consumer doesn't have the preconceptions of someone who considers themselves "technically literate" based on a limited world view. It's better to be ignorant and humble than half-smart and prejudiced.

  300. Tom, you're a simple minded moron... by Eric+Damron · · Score: 1

    "You can quit proclaiming Linux the Windows killer."
    Actually most Linux developers don't give a flying shit about killing Windows. We just do what we do because we love it. But as long as you want to throw the gauntlet I'll pick it up.
    "Linux is established and has a niche that, as various pendulums swing, will grow and shrink."

    The Linux market share is growing faster than any other operating system and is beginning to bust free of the "niche" label that Microsoft shills such as yourself want so desperately to hang on this superior platform.

    " Show me charts and stats and benchmarks that prove Linux superior to Windows in every measure and I'll not argue with you."

    There are plenty of statistics showing Linux superiority to Windows. I'm glad you agree that it's a better operating system.

    "But no matter how much money and dedication is poured into Linux, it will never put a dent in Windows' mind share or market share because Linux is an operating system, a way -- and probably the best way -- to make system hardware do what it's told. But you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it.

    "But you can't turn Linux into a platform even if you brand it, box it, and put a pricey sticker on it.

    Businesses and organizations of all sizes need consistent, predictable, scalable, self-contained platforms for server solutions. Windows wins. Linux doesn't lose, because it can continue the legacy of another nonplatform, namely Unix, that needs to be refreshed and extended."

    I see, three paragraphs saying that Linux is superior but could never really compete with Windows with a really lame justification.

    Redhat, Mandrake, Suse and others are working to provide a consistent, predictable and scalable platform. That isn't even an issue. In fact by the very nature of Open Source applications they are more stable than proprietary software. How many applications have we purchased only to find that the business stopped supporting them or discontinued them? That's not a problem in the Open Source world. If the creator of an Open Source product quits there are many other developers willing to pick up the project and continue on so don't give me this crap about the Linux platform (and yes, it already is a platform.) not being predictable. You think Microsoft is predictable? The only think truly predictable of Microsoft is their continued anti competitive practices.

    " In contrast, Windows fills in all the blocks between the hardware and your apps. It does it in ways that you can't alter, but which you can use in different ways. You can code with the tools of your choice and in the programming language of your choice, and unless you stray too far from the rule book, everything you create will interoperate with everything others write for Windows."

    Yeah Windows is so integrated that indeed everything will interoperate including viruses. Microsoft's misguided integration is not an asset and it is laughable that Microsoft shills such as you keep pushing it even in the face of documented security flaws that this hackers paradise provides.

    Your article is nothing more than Microsoft FUD.

    --
    The race isn't always to the swift... but that's the way to bet!
  301. Tom Yager is a Mac fan by Anonymous Coward · · Score: 0

    Tom Yager is a Mac fan, which explains much. His point is: Linux can't, but Mac OS X can.

    Tom Yager is a smart guy and I think Apple has almost all the pieces in place to get into the datacenter. Server software, Unix engine, storage servers, nice interface, tie-in soul-destroying corporate control, etc.

    It may even turn out he's right, but I think he is just writing down his wishes. With more and more companies successfully running their datacenters on Linux, it's hard to argue for Mac OS X.

  302. Never say never by Atroxodisse · · Score: 1

    No one can read the future. Except me.

    --
    Read my short stories - You won't regret it.
  303. The cons of competition by blahplusplus · · Score: 1

    I believe this is one part of where economics or competition between OS's is deterimental. It's good to have flavors of different OS's for different tasks, but to standardize an OS for general usage (i.e. a platform, say like CD's, DVD, etc) it's better to co-operate then compete.

    It would be nice if linux and windows would share their Intellectual property (source code, etc) with one another, I'm sure both would benefit in this regard. This is of course a socailist wet dream but it shows the power of co-operation over sectarian (trade secret) competition.

    It would do much more to advance things on the OS front since OS's are so complex in the first place, to be able to share at least some of the intellectual property for standardization and interoperability, without having to resort to reverse engineering and 'emulation'.

  304. Re:10 years ago : Windws cant kill Unix on servr s by mikefe · · Score: 1

    That is the problem, there are alternatives. Most don't search them out. Did you check Google?

    There are many antivirus programs available for Linux as well inventory programs.

    If the goal is a move to Linux systems, then windows -only solutions are the worst and proprietary is acceptable until free software catches up in that market segment.

    --
    There: Something at a specific location.
    Their: Owned by someone.
    Please make sure your english compiles.
  305. Re:Uh, huh? by Anonymous Coward · · Score: 0
    Based on a quick look at the documentation, I'd say Cocoa looks more like a platform API (like Win32) than a GUI API. That is to say, there are APIs for all sort of interaction with all parts of the system, and with other applications. They appear to be object-oriented, and completely different from the related POSIX APIs.

    I'm not certain, but it looks like applications can be entirely written in Cocoa (without any direct use of POSIX calls), in the same way that applications are entirely written in Win32 (without any direct use of NT calls). If so, the 'platform' would definitely be Cocoa, and not BSD/POSIX.

  306. Remember: Windows is for Intel based PCs by rastin · · Score: 1

    There is a way M$ can fall flat on its face all by itself. I imagine some day we won't be using the current IAwhatever based systems. M$ is the only software corp of its size that is utterly devoted to platform dependence. All it would take is a new architecture to come along that everyone says: "This is way better/cheaper than a pc". I am sure it is not trivial to port all gazillion lines of spaghetti code to a new platform and not skip a beat, let alone guarantee interoperability. On the other hand, every other major software vendor has already had to port code to something at one time or another. Still not trivial but at least they have experience doing it, and maybe even the forsight to plan it from the start. I'm sure when M$ writes something new they aren't saying: "But if we write it this way it won't be portable!"

    Not only that but I do believe that M$ market dominance overseas is slipping. It may not happen over night but their dramatic rise to the top is over, now its just wait and see how long they can last. Doesn't mean they will be reduced to ashes but someday they will be just another largish software vendor.

  307. Significant difference by GunFodder · · Score: 1

    OSX is so easy to use even a journalist can figure it out. Hence their infatuation for Apple.

  308. Tech writers should be ignored by inkswamp · · Score: 1
    Speculation from tech writers should be ignored. End of story. I can't think of the last article I have ever read that turned out to be true. Particularly for me, as a long-time Mac user, I think back over all those doom-and-gloom stories about Apple being at the end of its road and it makes me wonder why anyone still gives this stuff any credibility at all. The popular horse to beat seems to be Linux lately which, frankly, just makes me more and more interested it in. The more I hear about how it's going to go down or how it's linked to communism or how it's unamerican or blah blah blah, the more I become convinced that someone with real power is frightened to death of it. Therefore, for me, it's damn interesting.

    In fact, I just installed Yellow Dog Linux on an old G3 I had at work with the blessings of my superiors. I'm still a newbie, but that will change over the coming year. I will decide for myself (as I think everyone should) whether or not Linux can compete with Windows.

    --
    --Rick "If it isn't broken, take it apart and find out why."
  309. linux changes by cg0def · · Score: 1

    It is try that at it's current stage linux has no chance of even putting a dent in the windows world and Microsoft knows that. They don't even have to run any of the anti linux campains because the linux world does that itself. IMHO the linux world need an ideology chech and certain parts of linux and the projects that go in most distributions need new leaders and a new direction. It is about time to stop accepting mediocre programers just because they know one of the better developes in the team. Also the linux community needs to start educating the world and especially the corporate world of the benefits of OSS and how OSS can help them. This might actually lead to slight restructuring of licences so that they are more clear and easier to integrate in the existing environment. This does not mean easier to keep code hidden at all. Also people have to stop this dumb arguing about linux is better than windows because the bottom line is that it is not and never had been. Linux does however have the potential to be better than windows one day and the linux community needs leaders that are willing to drive it there. Linux seems to be all about patching things and getting things done the fast and dirty way and maybe patch them or rewrite them later. Well all this does is create problems down the line and also waste time. It is about time that there is a group of people whose only purpose is to make sure that the submited code is good and works. Kinda like the testers depts in just about any software company that deals with closed source. It is ridiculous to depend on the actual user to report bugs in the code. If they wanted to do that those users would actually be developers. Yeah testing is never fun but if linux is ever going to move away from the hoby status that it has then there really need to be a little bit more profesional environment. There are a lot of good things that the linux community can learn from large scale corporate businesses and it is about time that they turn this whole thing arround. If you don't know how to write good code I really don't care who you know but you are not going to be developing my OS. You can't complain about not having any control over Windows when there are bug reports about faulty pci code in the kernel that has been outstanding for over an year and noone seems to care about it. Also it is about time that linux developers decide to support as many devices as thet possibly can get their hands on and not only the ones that they use. After all if you are going to aleanate the hardware manufacturers and you have no way of convincing them to write a driver for linux it is up to YOU as a kernel developer to do that. There are manu companies that wii provide you with sample hardware for testing and even more users out there that will sign up to be testers. Plus that way you won't have Joe who just finished his 2nd year of college writing carppy software and believing that he is the next Linus Torvald. It is time for the OSS community to unite in the name of a common goal rather than create thousands of APIs and thousands of duplicate software. Linux and the OSS community arround it has the chance to create something that no company has ever done but until that community startes acting like one and stops forking projects for dumb reasons that potential will never be realized even partially. It is just a damn shame that in over 10 years there is not a single distribution that has even reached the level of OS X which exists for under 5 (plus whever it took before). Mac OS X is a living proof of the superiority of the corporate system over the hoby driver one surrounding linux. And as far as Novell goes unless they take over most major projects out there I really don't see how they can succeed.

    1. Re:linux changes by Anonymous Coward · · Score: 0
      Good grief - what an astonishingly shitty post! Its already retarded and tired thesis was rendered even more terrible due to the atrocious spelling and grammar of the poster!

      My advice:

      1) Read more about the subject - most of your points have either been done to death and/ or discredited. I've not even going to begin to dissect it point-by-point, as I'd be a drooling retard at the end of it; and

      2) Learn to fucking write. Your one-paragraph block of idiocy reads like it was written by a fourth-grader, or possibly a brain-damaged adult.

      Sheesh.

  310. linux can't kill windows by Anonymous Coward · · Score: 0

    the only reason linux can;t kill windows is because MIcrosoft is doing such a great job of killing windows. Lets all raise a cheer for "THE Blob that ate NEw York"

  311. /rant all you want, it's the truth. by Anonymous Coward · · Score: 0

    I am saying that you really should know what you are talking about before speaking.

    And you should really learn how to read before telling someone else they don't know what they're talking about.

    So which should I use, QT, or GTK2? GNUSTEP? Who will be able to use it, and what will they have to spend a day or two installing, configuring, and hacking, before they can even use my app?

    No such problems on Windows, CreateWindowEx just works, every time. I can write a program, against ONE API layer, and expect it to work 95% of the time on 100% of AVERAGE USER'S systems. Can the same be said of QT, or GTK? I think not.

    Also:

    1) Win 3.1 is not supported by WinXP.

    Bullshit. All the Win16 API calls that 99% of apps ever used (save for *undocumented* calls, and the ones that "aren't there anymore" still work, they're wrapped around the new Win32 call anyway) work on WinXP. Go try it. I just did. The ones that don't work, or go away between versions, are non-standard APIs. Get over it. You shouldn't be using them anyway.

    2) Just because it is available, doesn't mean it will work /correctly/. Win 9x and ME are emulated within XP, so parts of their functionality don't work.

    What? SendMessage still works, with the same parameters that were present in the Win3.1 days. Hell son, I could install progman.exe on XP and it *works*. Of course, it doesn't hook into the start menu and desktop and shit, because that stuff didn't exist yet.

    And what do you mean, Win9x and ME are "emulated" within XP?? Have you ever, once, taken a look at the fucking Win32 SDK? I can develop against the same one from 1998, and my programs will compile, and run, as expected, on every Windows version from Win95 on up. The mechanics behind the API mean shit to me. If my app works 99% as expected, I sure as hell don't care about the details. Programming a simple GUI app for Win95, is the same as programming one for WinXP, except in very, very few cases.

    I think it is you who don't know what they're talking about.

    Same goes for about every other Linux-FUD spewer I've ever run across. The loudest ones of you honestly have no clue how windows works, or how to develop windows applications, and it shows.

    The ones who do, are the ones who use Win2k at work, and OS X at home, and admit it.

    Oh, and the next person who brings up "DLL HELL" needs to be fucking smacked, it is a non-issue these days, for any competent windows user (especially since VB cleaned up it's act)..try getting the same people that experience dll hell on windows on a linux machine, and let them install some apps, haha, talk about dll hell.

  312. Alright well I think this guy is off by owyn999 · · Score: 1

    But that is only if he is talking about all of the Linux based OSs I think that this guy hasn't tried to deal with MS lately I just tried to transfer a copy of XP from one machine to another with a full install disk not preinstalled on a machine and they tried to go against their own EULA stating that you can move an install internally onto a machine as long as you completely remove it from the prior machine... Section 4... I think that when people start running into this problem they will finally get fed up and ditch MicroShaft...

    --
    Where's that cap to the Decanter of Endless water???
  313. doesn't matter ... by Anonymous Coward · · Score: 0

    windows systems are self-destructing ...

  314. Reinventing the wheel has its merits by loose_cannon_gamer · · Score: 1
    No one is so foolish as to make what can be acquired cheaply or free; it's wiser to pick one from among hundreds of platforms and modules that fill in the holes between open source Unix and your applications.

    I think this is where he lost me. This is exactly the difference, in my mind, between the linux afficionados and the Microsoft fanboys (throw OS X'ers in there however you like). The Microsoft way is, "it works." The linux way is, "it might work better if..." (And the OSX way is, the linux guys made it work better in this way, so let's adopt it.)

    If the entire world were happy with accepting the first solution that arrived for a given problem all the time, there would be no linux, as linux simply re-solves a bunch of 'problems' that were originally solved elsewhere. The point is, sometimes it turns out the wheel you thought was round was really an octagon, and with a little rework you can make it a decagon, or maybe more.

    Having the insight to see that there might be a better solution to a problem, the determination to find it, and the courage to use the solution, these are the stepping stones of progress.

    But for many people, an octagon is enough, and the extra work of dealing with the decagon isn't worth it. They view the progress as wasted time and effort, and they always will. You can sneak a decagon into where the octagon was, but they won't understand why you did it. So what if there are two more sides? They don't understand why it matters, because to them, it doesn't.

    My prime example growing up was my dad in this respect, when I was the teenager always wanting to fiddle with the computer. Sample dialog:

    Me: Dad, can I add another 8 MB of RAM to our computer?

    Dad: Why?

    Me: It will make things run faster and better.

    Dad: So, why?

    His point was, 'it already works fine.' And he was right, it did work fine for him. It drove (and still drives) me insane to work on his Celeron 533 with 128 MB of RAM and 500MB peak virtual memory usage, where it takes 3 minutes to swap programs. But this is a problem I have created in my own self -- I expect something else.

    The real issue of windows vs. linux? Linux people think windows is broken, and windows people don't.

    --
    In Soviet Russia, us are belong to all your base.
  315. Re:A few points of clarification. I hope these hel by Gr8Apes · · Score: 1
    1) That still doesn't solve the main issue I have, which is bringing up a window that's been minimized. If I have three finder windows, and I minimize 1, I cannot bring it up via the keyboard. The Cmd-` flips between active windows of a single app, it does not bring up the minimized ones.

    3) See the problems that remain even with this enabled.

    4) I'll repeat my statement on the prior response: DOH!

    5) Nice, albeit rather unintuitive! Now, is there a way to show the entire path to folder in the title bar? That would complete my wants for Finder ease of usability. The folder drag is a nice almost expected feature.

    7) see my posting that includes more than merely cut, paste, and copy. Movement, selection, etc, are included.

    --
    The cesspool just got a check and balance.
  316. Apache. Samba, wine chopped liver by devfsadm · · Score: 1

    In what context are you referring to operating systems in - Networking, Programing, Desktops applications. What? Surely you can be as bold as to say that Windows is better at all aspects of computing and if you are. You are one simple minded bastard like a previous post said. You ask for proof that you need a benchmark telling you that Linux is better in every measure. Of course not one OS will ever do that so what your asking for is impossible. And how do you define every measure? Does that include kernel level access and source access. You are coming out very biased so what good would a benchmark do you proofing Linux is better. Need to use it to see the truth. Linux is not perfect. Some of the desktop Applications need improving. The question is how do you dumb down applications so the everyday users can use them. Thats sorta like dumbing down an F16 so Susie rotten crotch can fly it. Heres a good article about the Samba vs 2003. http://www.linuxworld.com/story/32673_p.htm/ Another good general article is this. http://www.linuxworld.com/story/32648.htm/ But of course I am interested in what your proof is. According to your article there will be more.

  317. I almost agree with him/her, but... by Anonymous Coward · · Score: 0

    ...Linux (and other Free Unices out there) have already put a dent in the Windows market, or at least slowed Window's growth. Otherwise, Microsoft wouldn't be worried about Linux at all. They are however, and they have good reason to be.

  318. A better way to put it by Anonymous Coward · · Score: 0

    Windows wins because when people sit down at PCs, they are completely unaware of the thing called Windows. They equate it with their PC. It has nothing to do with user interface or how many CPUs it runs on. It came with it out of the box.

    If you're offering an alternative to a product that customers aren't even aware of owning, you can't win.

  319. The title is correct by michael83r · · Score: 1

    No matter how good linux is; Window's can't be killed. It is just far too established, it will never go anywhere, ever. Neither will microsoft. It's pretty simple.

  320. Re:I think he's WRONG by Anonymous Coward · · Score: 0

    well, 1% to 4% of all corporate desktops of the world already be a very large number. assume it's 1% to 4% and that accounts for your "almost".

  321. Kind-of right by IBitOBear · · Score: 1

    The partial flaw of your analysis is that the memory "allocated" to the loaded shared object (in linux) is only virtually allocated, you are right. But, to page granularity, if you don't use the code paths then they arn't actually loaded anywhere and don't really take up any meaningful space.

    In point of fact, the shared object mechanisim isn't broken in general, it fails "in detail".

    I have several (Linux) systems with distinct and conflicting versions of the libc.so working just fine on a daily basis. [Yes, this is by common logic quite dumb, but it is necessary for reasons I will not go into here.] If you build the overall system "right" this is very easy to do.

    By setting up /alt/(compiler_version)/{bin lib etc} trees I can have disctinct runtime inferance trees. Executing the programs is then a matter of point-and-shoot with LD_LIBRARY_PATH or the configuration of ld.so. It doesn't practically matter that I have an /alt/(version)/etc/ld.so.{config cache} as long as the executables know which one they are supposed to use.

    It "doesn't matter" to the system because the virtual file system in Linux will efficently deal with the multiple mappings of the same text images even if they come from separate loaders. That's what it is for.

    Similarly, targeted dependencies via the definition of "versioned symbols" isn't rocket science either. It's all there to use, and the kernel does this very thing for its modules if you want it to, but the developers have to use the techniques.

    "The system" cannot be relied uppon to make these issues go away.

    Consider "nice portable Java", given or take deprecated interfaces and JINI, this system suffers from many of the things its designers tried to design away.

    Even statically linking everything isn't a solution because the underlying hardware, and therefor the executing OS, simply _must_ evolve. And evolution isn't 100% backwards compatable.

    So if people work on forwards compatability (new versions being supersets of old versions etc) you can do "pretty well" if you make sure not to install old stuff on top of new.

    And that is an administration task that is only somewhat automatable.

    At some point, people have to stop being dumb or suffer the consequences of their own ignorance.

    Life sucks. 8-)

    --
    Innocent people shouldn't be forced to pay for inferior software development.
    --"Code Complete" Microsoft Press
  322. You couldn't be more wrong... by Eric+Damron · · Score: 1

    "Linux isn't a viable product. It changes too often, and there are far too many versions. You pointed this out yourself. Can you imagine Windows ever being popular if there was a version for students, a version for corporate markets, a version for Grandma, and a version for average (stupid) users? It would never work."

    Linux is most certainly a viable product and is becoming better everyday. I've used it for years and am at this very moment writing this reply using Suse 9.2. Yes, there are various flavors of Linux but that isn't a big deal. Linux is Linux no matter which distro one uses. KDE and Gnome look and act the same weather I run Suse or Mandrake. Open Office is Open Office no matter which platform I'm running it on. Firefox runs just the same on my distro as it does on anyones. There are a LOT of window managers available but by default KDE and Gnome are installed. However if I choose to use one of the others I have a CHOICE. As far as corporate versions I think the parent post made it clear that the difference is primarily the default application load. Not some strange and different animal as you suggest. I would assert that if Linux isn't a viable product like you say there wouldn't be the mass migration to use it in other countries.

    "Windows is a commercial success for several reasons:
    -It's a monopoly, even though Linux and Mac OS exist
    -It comes bundled on a lot of systems, thereby saving the user the trouble of learning enough about their computer to install something by themselves
    -It Just Works. Almost all hardware manufacturers write device drivers with Windows in mind, and since Windows is so common, the proprietary software it uses is also widespread. This means that any hardware you toss in the system should Just Work. Any documents Mom sends you should Just Work."

    Well we agree that windows success is in large part the fact that it's a monopoly. I would add however that it's a monopoly willing to abuse its monopoly position to maintain its strangle hold. Not exactly a company with which I would choose to do business.

    It comes bundled with less applications than most Linux distros and it's no harder to click through the default load of a Linux platform than it is for a Windows platform.

    I haven't had any trouble with drivers for my hardware but you are correct that Linux is slightly behind on some of the newest hardware. But only slightly. As Linux becomes more and more common this will change and is in fact already changing. I have found that older hardware is better supported under Linux than Windows primarily because Linux will load the drivers for any hardware that it sees where as for Windows I have to spend an extra hour or more installing the third party drivers that came with the hardware and God help me if I've lost the CD or floppy.

    "Linux can do all these things, but sometimes it takes a bit of work. Linux isn't an all-in-one solution that Just Works. Instead, it's a fast-paced, rapidly changing way to get your computer to do the most possible."

    Again it doesn't take any more work to point and click in Linux than it does in Windows. Linux IS more flexible for the people who need it but doesn't really take anything away from the Mom and Pop users. Until recently the focus from the Linux developer's has been on the server side. However, Novel has just announced that they intend to go after the desktop. Any deficiencies that you might find now will rapidly be corrected.

    "Most users don't care whether they can change their ethernet adapter's MAC address. They want to buy a computer, plug it in, and turn it on, and have everything work. If they need to install something new, they just double click the pretty picture, and then click OK a few times."

    Most Linux users don't care whether they can change their ethernet adapter's MAC address but for those who do, they can. And if you would take the time to load the newest Suse or Mandrake distros you would find that everything works right out of the b

    --
    The race isn't always to the swift... but that's the way to bet!
    1. Re:You couldn't be more wrong... by tehcrazybob · · Score: 1

      Linux is most certainly a viable product and is becoming better everyday. I've used it for years and am at this very moment writing this reply using Suse 9.2.

      I, too, use Linux. However, as someone earlier pointed out, you can't look at it as a product so much as a program. A product is something that is easily marketable. All the things you pointed out, I agree with - it's extremely usable, and far more powerful and flexible than Windows. However, it's not going to make the jump to a commercially viable product, because in order to be 'snapping at Microsoft's heels' you will have to get more than the geek population to use it. OSX has a loyal following and is by no means nipping at Microsoft's heels, because the user base is too small.

      Firefox is a good example of this. It's done very well, for an opensource program, and has gained the acceptance of thousands of non-geek users. However, of the many people I have tried to convert to Firefox, I have failed almost as often as I have succeeded. There's no good basis for sticking with IE, because Firefox does all the same things but better. The only differences most people will notice are the name, the icon, and that Favorites has become Bookmarks. And yet they don't want to touch it. Now imagine trying to get these same people to learn a whole new set of programs that are all similar to the Windows equivalents, but have many small differences like those between IE and Firefox. It's not going to happen. You'd be amazingly lucky to get 10% of the population using it.

      --
      Computers need to explode more often.
    2. Re:You couldn't be more wrong... by Eric+Damron · · Score: 1

      Well the most profitable products are easily marketable but I don't agree with you that Linux isn't a product. Redhat, Suse, IBM and Mandrake would probably agree with me that Linux is a product.

      While it is true that Linux started out to be a geek OS that is changing. If you really are a Linux user as you claim , you must have turned a few people who were not geeks onto Linux. I have, and they really like it. The average adult uses his PC for surfing the web, picking up email, writing letters etc. All these things are as easily done in Linux as they are in Windows. Yes, when compared to Microsoft's monopoly share of the market, Linux doesn't have many users yet. Nobody has. To say that just because Linux hasn't broken Microsoft's monopoly yet it never will isn't founded in solid logic. Linux developer's haven't been working to gain desktop market share until just recently. The push has been until now to make Linux more useful and accepted on the server side. Give us a few years. Linux is reaching a critical mass and is popping up all over in Europe and Asia.

      I agree with you about the browser. It's very hard to get people to change once they are use to it. Once Microsoft faced the same problem with Netscape. Their solution was to integrate it directly into their operating system so that they could use their monopoly OS market share to destroy Netscape. The animosity that Microsoft had for Netscape is abundantly clear. One can even find "Nescape engineers are weenies!" embedded [reversed] in the file dvwssr.dll. This file was used in Microsoft web server software for Windows 95/98 and other products as well. Without ranting too long about the Microsoft evil Empire just let me say that it is too early to proclaim that Linux will never make it big on the desktop.

      --
      The race isn't always to the swift... but that's the way to bet!
  323. WNT - VMS by Anonymous Coward · · Score: 0

    The arguments sound similar to that made for unix vs. VMS in the past (unix provides a bunch of legos, VMS provides a 'solution'). If MS is thus comparable to VMS, I guess that may tell us where this is all going.

  324. DLL hell doesn't happen in most operating systems by dbIII · · Score: 1
    DLL hell is not unique to either Linux or Windows
    DLL hell doesn't happen in most operating systems - libraries have version numbers to stop this happening. If you need an older/newer library in linux for example you add that in as well as the other one and have something to point the application at the correct one in the instances where it cannot work it out itself - so you set a shell environment variable - trivial stuff. The rpm package tool gets rid of old libraries by default, but it's easy to tell it not to do so or to install old libraries without installing the new one.

    This is a bit much for the casual user, but no-one has bothered to automate the behaviour. Automating the behavior would go along the lines of - an error due to the wrong library launching a script asking the user if they want to install the correct library and still leave the original library intact for the stuff that needs it.

  325. Well, let's find out by decax · · Score: 1

    There's only one way to find out...

    Put Linus and Bill in a ring and it's the last man standing!

    ... and, please, give Linus a rusted knife! =)

  326. FSF : Fucking Stupid Faggots by Anonymous Coward · · Score: 0

    As long as we don't kick out FSF, GNU and its homosexual sodomizers, OpenSource will never reach the critical mass!

    The biggest hurdle in the way of progress of OpenSource software is FSF, GNU and Stallman!

    1. Re:FSF : Fucking Stupid Faggots by Anonymous Coward · · Score: 0

      I agree with you completely.

  327. Re:I think he's WRONG by Grishnakh · · Score: 1

    Maybe you should look around more. Here's one article I just caught today.

    http://www.computerweekly.com/articles/article.a sp ?liArticleID=137912

    10,000 desktops sounds like a large number to me.

  328. To Each Their Own by Alari · · Score: 0

    I have 2 computers at the moment, a windows box and a (gentoo) linux box. I use the windows box for what it's good for: playing games and web browsing (with firefox) and I use the linux box for what it's good for: server and hosting tasks.

    Yes, it would be nice if I could install any windows application or game on the linux box and Just Have It Work, as flawlessly as it does on the windows box (insert generic snarky reply about windows stability here) the same way it would be nice to be able to SSH into my windows box, run Screen, and then load up TF. But... why? SSH/Screen/TF works better on a linux box, and the windows applications and games work better on a windows box.

    So why change things? To "save" people from having to struggle under the burden of windows? To bring them to see the light of your own personal savior? Nobody likes being converted or proselytized to. A "grand unified OS" isn't really NEEDED anyway, if you think about it. A server going down because someone ran a buggy game on it doesn't sound like a fun time to me. =)

    --
    I use Windows... like a two dollar wh.. why don't I just go ahead and not finish that sentence.
  329. They're right... by im_thatoneguy · · Score: 1

    Open source will always be "By engineers for engineers". In order for a project to get development, an engineer has to be interested in it. There are vast arenas of software where the engineering puzzle is mundane but the product is interesting. I also don't see Open Source spending vast quantities of money to do market research to design a product for a customer. Servers and Open source go in hand because the software is only used by engineers.

  330. learning new OS has a definite COST for new users by simscitizen · · Score: 1

    Let's just say I'm a normal average person: I use my computer to write Word documents, browse the web, send e-mail, do my taxes, maybe fire up Quicken or some other random productivity app. For the most part, Windows XP is just FINE for doing these tasks. Okay, you can harp on IE; but users have the option of Firefox if they really care. WHY would I as a normal user who only needs to accomplish these tasks throw out Windows and buy a WHOLE NEW OS so I can spend MANY HOURS learning new OS conventions (examples: Where is Word in Linux? Where is the "Control Panel"? Why can't I just click on exes from the web and install them? What the fuck is the /mnt/cdrom instead of D:\ business? And so forth...) so I can do the EXACT SAME THING I do on Windows? Hell, you're paying all these hours so you can do LESS. No native version of Quicken/Turbotax that is easy to install. No easy way to run the newest cool little freeware exe your friend tells you to check out. No way to natively install Word: instead you've got to learn a whole bunch of new conventions in OpenOffice. Oh yeah, and sometimes it randomly mangles the Word document your friend sent you. Face it. No average user is going to sit down at his computer with a free evening on his hand and think, "I know what I'll do! I'll install Linux so I can invest hours learning a new operating system to do less stuff!" Sure, if he invests hours upon hours trolling forums and reading tutorials, he might finally gain the aptitude to do on Linux exactly what he used to be able to do on Windows. But even that is a stretch, considering that most popular Windows applications that Joe Average uses (Photoshop, Quicken, TurboTax, Office) are NOT easy to install (i.e. not native) on Linux. What benefits does Linux offer to an average user who has used Windows for years? None. Cost? Windows has no cost to these users, it's already been installed. Open source? Average people don't give a shit about the spiels about how application code is shared; they just want to use applications. Better apps? Hell no: OpenOffice, GIMP, etc. are nowhere near their established commercial Windows equivalents. Security? A win for Linux--but then again, you could accomplish the same thing in XP SP2 by installing a 5MB Firefox download. So what's better--installing a 5MB app, or installing a whole new operating system? The only way for Linux to really make headway is if most popular programs start getting ported--or more realistically, more applications start becoming web-based, like e-mail. But we're definitely not there yet. Until then, expect the network effect and the fact that no one wants to relearn things to do the same thing continue to eat your lunch. Learn about inertia, people.

  331. with line breaks by simscitizen · · Score: 1
    Let's just say I'm a normal average person: I use my computer to write Word documents, browse the web, send e-mail, do my taxes, maybe fire up Quicken or some other random productivity app. For the most part, Windows XP is just FINE for doing these tasks. Okay, you can harp on IE; but users have the option of Firefox if they really care. WHY would I as a normal user who only needs to accomplish these tasks throw out Windows and buy a WHOLE NEW OS so I can spend MANY HOURS learning new OS conventions (examples: Where is Word in Linux? Where is the "Control Panel"? Why can't I just click on exes from the web and install them? What the fuck is the /mnt/cdrom instead of D:\ business? And so forth...) so I can do the EXACT SAME THING I do on Windows? Hell, you're paying all these hours so you can do LESS. No native version of Quicken/Turbotax that is easy to install. No easy way to run the newest cool little freeware exe your friend tells you to check out. No way to natively install Word: instead you've got to learn a whole bunch of new conventions in OpenOffice. Oh yeah, and sometimes it randomly mangles the Word document your friend sent you.

    Face it. No average user is going to sit down at his computer with a free evening on his hand and think, "I know what I'll do! I'll install Linux so I can invest hours learning a new operating system to do less stuff!" Sure, if he invests hours upon hours trolling forums and reading tutorials, he might finally gain the aptitude to do on Linux exactly what he used to be able to do on Windows. But even that is a stretch, considering that most popular Windows applications that Joe Average uses (Photoshop, Quicken, TurboTax, Office) are NOT easy to install (i.e. not native) on Linux.

    What benefits does Linux offer to an average user who has used Windows for years? None. Cost? Windows has no cost to these users, it's already been installed. Open source? Average people don't give a shit about the spiels about how application code is shared; they just want to use applications. Better apps? Hell no: OpenOffice, GIMP, etc. are nowhere near their established commercial Windows equivalents. Security? A win for Linux--but then again, you could accomplish the same thing in XP SP2 by installing a 5MB Firefox download. So what's better--installing a 5MB app, or installing a whole new operating system?

    The only way for Linux to really make headway is if most popular programs start getting ported--or more realistically, more applications start becoming web-based, like e-mail. But we're definitely not there yet. Until then, expect the network effect and the fact that no one wants to relearn things to do the same thing continue to eat your lunch. Learn about inertia, people.

  332. Just a hint: by Truth_Quark · · Score: 1
    I use the windows box for what it's good for: playing games and web browsing(with firefox)
    You'd be safer still using the Gentoo box for web browsing (with firefox)

    Why on earth do you consider the Windows box good for that?
    The main reason I've have a gentoo partition is for secure web browsing and internet banking.

    I have the windows for games.

    I don't do any server and hosting at home.

    What kind of "please keystroke log my internet banking password" eegit has a gentoo box, but uses windows for web browsing? You want to give away all your money?

  333. Linux doesn't compete by Anonymous Coward · · Score: 0

    Tom,

    You're right.

    Linux and Windows don't compete.

    Almost nobody buys Windows. Windows is forced onto people by OEMs who bundle the price into the hardware.

    Linux has to be purchased, or acquired by burning a CD, which takes time, and then installed, usually by deleting a copy of Windows.

    People actually spend money and/or do work to acquire Linux.

    So, no, they don't compete...Linux is in a class by itself...

    John A. Bailo

  334. Linux -vs- Windows by irac · · Score: 1

    Compatibility. That's what is needed to make Linux a leader in the PC platform/workstation/desktop arena. I use to be a really big Linux bigot and wouldn't go near a Windows machine unless I absolutely had to. Well, I got into gaming - specifically, online gaming - and walla, I'm back on a Windows system. I have a few Linux systems sitting around, but they hardly ever get touched. Okay, I do more on a system than just play games, but I don't need/want dual boot systems - been there, done that. I will not carry around a different system for each OS that's out there. I still have to send/receive documents from clients using Windows and while Open Office is close, it's not 100%, so I need Windows for that. When there are zero differences between how a program runs on a Windows system or a Linux one, then Linux will start to inch forward and maybe even surpass Windows. Until then, Microsoft is holding the compatibility card and they are not about to let go of it.

    --
    Perfect is ALMOST good enough.
  335. Crippling Society by Paraplex · · Score: 1

    Closed source and copyright/patents are crippling society. We could be moving a thousand times faster if people followed open source's lead.

    Besides, we're supposed to be the most intelligent species on this planet. How did we miss the whole "diversity is the most important feature for survival" lesson?

    1. Re:Crippling Society by yasuo.hiroshi · · Score: 1

      The world be nice, but unfortunately we live in an overly Conservative, materialistic society that values the all-mighty dollar above all. Open source is great example of how some aspects of socialism actually help business competition, but the fact remains that most people in America (or even the world) actually can interepret socialism and derive a useful system from it.

      Yes it is true that socialism was a driving force behind communism which eventually killed the Soveit economy, but on the other hand if it moderate socialism is applied to democracy then the result would be amazing. Now if we can only convince the idoits in the White House that a little business regulation can actually boost competition and inginite innovation.

  336. bring it on by motherball · · Score: 1

    I'd choose J2EE and Solaris over Linux for nonuser-facing server applications in shops that have expert administrators.

    If he thinks that his Java + Solaris can best my custom Debian Sarge for performance he's got another thing coming.

  337. Yeah sure. by jotaeleemeese · · Score: 1

    That is why people keep using the consistent look of the following user interface:

    c:\>

    And surely you are going to tell us now that people migrating from Windows 95 or 98 to WindowsXP do it because the user interface is consistent. And it matters to them of course (like if the poor sods had any say in the matter).

    --
    IANAL but write like a drunk one.
  338. linux is about choice by yasuo.hiroshi · · Score: 1

    I see so many posts on the subject that linux will never gain any significant mindshare because it is too "fragmented" and eventually this fragmentation will cause linux to break up into many smaller OSes. First of all this will never happen beecause all major distro have to adhere to compatibility standards such as the LSB to ensure their distro will work with the standards so in esscence it does not reall matter whether vi or emacs is better or if one perfers fluxbox over KDE or GNOME.

    Second, the amount of diversity in the linux community allows for a broader range of choice and user comstomisation. I would dread to see KDE of GNOME totally dominate, as both bring new and innovative features to the desktop and are great in their own ways. The same holds true for package mangement: RPM is great for some, so is TGZ and portage, but personally I like APT+synaptic (Debian) or RPM+YAST (SuSE). With linux, I'm not stuck with a system that I have to install twenty third party apps like in Windows to customise my system.

    Therefore, stating that linux will never appeal because it isn't consistient amoung all distros is moot thinking, because its that choice that allows for innovation and competetion. Each distro trying to patch together a compatible, viable, distinct, usable, and attrive package that can be customised to the users needs with a little effort. THat is what linux is about, try getting that kind of customisation in Windows without having to install a crapload of third party apps...

    Freedom of choice....

    1. Re:linux is about choice by masonm · · Score: 1

      A lot of people seem too focused on the Linux replacing (killing) Windows idea that they seem to forget what Linux and the Open Source community is really all about in the first place. Who cares is Joe User uses Xp on his machine? No skin off my back. I see Linux as being about choices. My OS can be exactly what I want and need it to be without anyone dictating it to me. That's how Linux started, Linus needed something better for his needs and so the Linux kernel was born. It was never about replacing Unix, or Microsoft, or anything else. It's a tool, and a damn good one. If Linux meets your needs that's great. If it doesn't that's ok too. The greatest thing about Linux is that it can be formed and molded into just about anything you need to get the job done, not that it will somehow replace another OS. Who really cares if it get's the job done for you? The fact that source code is openly distributed with license to change it into anything that you need it to be is what makes Open Source so fantastic. We aren't restricted to apps that perform a certain way, or look a certain way. We can modify the source code to make the app do whatever our little hearts desire. That's the true strength of Linux. Trying to mainstream Linux, suggestions of creating common distribution and package management standards is exactly what Linux isn't. That's NOT what Linux is about. The very nature of Linux and Open Source in general precludes these sorts of standardized ideas. There's nothing stopping a group from creating such standards and working with them and thus creating a distribution of their own, but Linux is not about forcing these ideas on others. Quite the opposite in fact. Linux will likely never be the mainstream's desktop and probably shouldn't be as this would likely kill the true nature of Linux.

      --
      Mason Linux: because a PC is a terrible thing to waste. [url=http://counter.li.org/]Registered Linux User # 382617
  339. 31 Flavors... by BrainSurgeon · · Score: 1

    The problem, IMO, is that Linux has too many favors out there to really become a viable "platform". Each flavor, including web and DB servers, creates contention, in one form or another, not only amongst customers but Linux loyalists as well.

    --
    "It's not rocket science, Smithers! It's only brain surgery!" --Mr. Burns
  340. we know this already by sad_ · · Score: 1

    other reports have indicated that windows and linux will probably be the only survivors (that still mather).
    ofcourse linux is not going to kill off windows, at least not during our life.

    --
    On a long enough timeline, the survival rate for everyone drops to zero.
  341. Re:I think he's WRONG by ninji · · Score: 1

    Well forgive me for the fact you havn't seen much of the corporate world.

  342. Then Again by rtb61 · · Score: 1
    Linux can't kill windows because windows already committed suicide. Face it, it was Microsoft's single minded pursuit of profits at the expence of it's customers that paved the way for open source and Linux.

    Of course an open source open standards based operating system still would have happened at some time in the future (after all it is only common sence to create one to provided equal, open and competitive global access) but it was Microsoft's efforts through it's monopolistics practices that made it happen so early in the evolution of IT (Microsoft are just paying the price for the profits they made).

    --
    Chaos - everything, everywhere, everywhen
  343. Linux already has begun to dent Windows.... by r_jensen11 · · Score: 0

    ...Significantly, too. Granted, not on the desktop, but in the server arena. And granted, not to the same extent that it's dented Unix. But the mere fact that MS decided to create a campaign (very political-like too, all built on lies & half-truths) to create FUD, just goes to show that Linux is denting Windows. Will it ever replace Windows? No, just like how MS hasn't replaced Apple (they still have their loyal fanbase, and as Apple is the new trend-setter, they'll be around for quite a while.) So, long story short: It's going to be a 3 type arena for a long time: Windows*, Mac*, and Linux*.

    The way I see it right now, the only way Linux could severely dent MS's desktop percentage is if Dell and other giant companies that build computers for idiots start providing Linux as OEM, and not to hide it. I know Dell provides Linux pre-installed on a few workstations, but they go out of their way to hide them. And even then, they only provide RedHat. The average computer user isn't a gamer: it's the gamer's parents and grandparents. That, and school kids that download everything they see off of KaZaA, thus promoting the viral population.

  344. Dead already. by Ramon+Maruko · · Score: 1

    Ofcourse, Linux can't kill Windows because Windows is already dead.