Linux Has Fewer Bugs Than Rivals 626
sushant_bhatia_progr writes "Wired has an article stating that according to a four-year analysis of the 5.7 million lines of Linux source code conducted by five Stanford University computer science researchers, the Linux kernel programming code is better and more secure than the programming code of most proprietary software. The report, set to be released on Tuesday, states that the 2.6 Linux production kernel, shipped with software from Red Hat, Novell and other major Linux software vendors, contains 985 bugs in 5.7 million lines of code, well below the industry average for commercial enterprise software. Windows XP, by comparison, contains about 40 million lines of code, with new bugs found on a frequent basis. Commercial software typically has 20 to 30 bugs for every 1,000 lines of code, according to Carnegie Mellon University's CyLab Sustainable Computing Consortium. This would be equivalent to 114,000 to 171,000 bugs in 5.7 million lines of code."
Make love, not war... (Score:2, Insightful)
better love (coding) your software, than making war selling it
Is anyone else bothered by this? (Score:5, Insightful)
Why does "Linux is just a kernel" suddenly not apply here? Is it because we're bashing Microsoft? This is kind of lame and makes the community look silly and vitriolic.
Re:Is anyone else bothered by this? (Score:3, Insightful)
Re:Is anyone else bothered by this? (Score:3, Insightful)
According to the author: Linux has fewer lines of code AND fewer bugs per thousand lines of code when compared to typical commercial software.
Currently linux has 985 known bugs in 5.7 million lines of code. If linux is to compete with commercial code it will need about 114,000 to 171,000 bugs in 5.7 million lines of code.
Re:Is anyone else bothered by this? (Score:4, Informative)
Linux is a kernel. The problem is that this is comparing the linux kernel to all of windows XP
And yet (Score:3, Insightful)
I'd like to see a serious discussion of the methods and funding sources in this study. You know, the same kind of discussions that appear whenever a Microsoft study is posted. Mysteriously, that critical thinking is absent in articles like this.
40 million lines of code != 5 million lines of code. If Microsoft attempted such a skewed study, I can already picture the kinds of posts people would be writing, asking about methods, funding,
Re:Now tell us what the bugs are (Score:3, Informative)
Re:Now tell us what the bugs are (Score:4, Informative)
ReadingTFA: "The Linux source-code analysis project started in 2000"...
This is an ongoing study, to find the bugs checkout Bugzilla.kernel.org [kernel.org] it's not like they hide them or anything
Mistake (Score:3, Funny)
I think they mean "40 million lines of bugs" :)
Re:Mistake (Score:5, Insightful)
This just in! "Hello world" has 0 bugs per three lines of code! Most stable and secure software ever devised!
Re:Mistake (Score:4, Insightful)
Then, when speaking of XP, they don't quantify the bugs, but merely say, "more are being found daily". Great... a pear.
Re:Mistake (Score:4, Funny)
Actually, hello world has the highest ratio of bugs/program complexity I've seen. Depends on who is doing the implementation, I guess.
Kjella
IEFBR14 (Score:4, Funny)
The purpose of IEFBR14 was to do exactly nothing, and pass a zero return code to the caller after doing the 'nothing' (branching on the return address in register 14 - thus BR 14).
This was actually more useful than it sounds and was used frequently in MVS JCL (Job Control Language) to make JCL do its thing without having to run a real program in a JCL 'step'.
Thing is, this program that had to do precisely nothing, had no less than 3 patches issued from IBM. Mostly to do with not clearing R15 (the return code register) correctly.
Go figure!
Re:IEFBR14 (Score:3, Funny)
Did you ever figure out condition code interpretation in JCL? It always seemed backwards to me COND(0,4) LE and all that???
Re:Mistake (Score:5, Insightful)
There's no central Linux repository for reporting bugs in ancillary packages, while at Microsoft's site, all reported bugs go into a single database that can be queried. Each individual Linux distro and each individual Linux package maintains its own bug lists, which would have to be some how amalgamated.
In order to do the stated comparison, you would need to state what distribution you were using, you would have to state which patches you were using, and you would have to document where the information on bug counts came from for both products.
On top of all this, bugs per 1000 lines of code, while an industry metric, isn't a valid measurement of code quality, either, by the way.
One good code metric is the number of control points per function. The more control points per function, the more likely that you have a bug. It's always possible to take a complicated function and break it up into smaller pieces, and with C/C++ (but not
Another good metric is the distribution of severity of the reported issues. Draw a bell curve of severity of issues, compare percentage to percentage. You're not concerned with 1000 bugs vs. 100 bugs, you're concerned about how many of those bugs compromise your system or cause a crash.
Another good metric is delta bugs over time. There will always be bugs, everyone knows that there will be bugs. The question is the bug count going up or down.
Another good metric is delta time between open and close. Again, there will always be bugs, but how fast they are getting closed is a measure of whether a product is good or bad.
Another good metric is distribution of the number of days that bugs have been open and reported (by severity).
The reason for this is that the number of lines to implement a given function using a given algorithm varies between programmers and programming styles. Some will use two lines or statements to do what can be done in one, to make code easier to read. The line number is something that a developer can manipulate easily.
However, these other measurements are tied directly into the quality of the code. Nobody cares how big the Linux kernel is compared to the Windows kernel, or vice versa. What they care about is how well the Linux kernel works compared to the Windows kernel.
Any count related to bugs, also, needs to take into account the fact that on Windows, you have billions of users any of whom could find and report a bug. On Linux, bugs are more likely to go undiscovered for a longer period of time, simply because there aren't as many people trying to hit them.
The Windows and Linux kernel tend to be very similar in bug counts. The kernels of both OSes tend not to have bugs, because kernels tend to have simple code that's hard to mess up in any meaningful way.
It's only when you start including all these ancillary subsystems, device drivers, etc. that you start to see significant percentages of the bug.
And it is exceptionally hard to get an accurate count of those on Linux. On vMac, I documented approximately one bug in ten that I fixed, and I think that would be typical of other open source projects (although I can't swear to that).
I think that on these other, valid measurements that aren't dependent on lines of code, that if you could collect the statistics on a package per package basis, and compare them, that Open Source would still come out ahead of Windows.
It's just a matter of using a meaningless metric on widely divergent code bases to prove any point is irresponsible, and by reporting it, the media is doing a disservice to the Open Source community by perpetuating the image of the community as a bunch of college students who don't understand real development practices.
Re:Mistake (Score:5, Funny)
We're trying to bash the dogshit out of MS products here and you are messing it up!
Go to your cubicle!
Re:Mistake (Score:3, Informative)
Those are integrated into the Operating System. They are not part of the kernel.
Re:Mistake (Score:2, Insightful)
Deleting half the DLLs in sys32 then trying to run applications does not constutute a bug, especially when Windows shouts at you that you really don't want to be deleting them. If the user being able to cause problems was a bug (some would say it is), then Linux is more buggy than anything else. Windows has the decency to complai
Re:Mistake (Score:3, Funny)
Excessive verbage inclusion exacerbates recipient misunderstanding of the intended message.
Re:Mistake (Score:2)
That's if you're talking a corporate version without activation.
Moll.
Congratulations... (Score:5, Funny)
Re:Congratulations... (Score:5, Insightful)
Seth Hallem, CEO of Coverity, a provider of source-code analysis, noted that the majority of the bugs documented in the study have already been fixed by members of the open-source development community.
Re:Congratulations... (Score:3, Insightful)
I doubt they looked up all the code. They probably only made statistics to compare the amount of bugs based on what has been reported and archives.
As a side note, at 20 bugs per 1000 lines, the 40 millions lines of Windows would contain 800000 bugs. I'm not a M$ fan, but this sounds a little excessive.
Re:Congratulations... (Score:3, Informative)
Exactly. The article is nearly useless. According to the CNet article covering the same issue:
"Proprietary software, in general, has 1 to 7 flaws per thousand lines of code, according to an April report from the National Cybersecurity Partnership's Working Group on the Software Lifecycle, which cited an analysis of development methods by the Software Engine
20-30 bugs per 1000 lines??? (Score:3, Insightful)
Re:20-30 bugs per 1000 lines??? (Score:5, Funny)
Sounds like Windows to me!
It's a joke, laugh.
Re:20-30 bugs per 1000 lines??? (Score:4, Insightful)
It's a joke, laugh.
It's a sure sign that the moderators are getting stupid when you have to point out the jokes to them.
Re:20-30 bugs per 1000 lines??? (Score:5, Interesting)
Keep in mind that you need to know the definition of a bug. It's not necessarially what you think it might be, but what the researchers defined. By their definition a condition that could never occur could be considered to be a bug. For example:
int foo ()
{
if (0)
return;
do_something();
return (0);
}
This overly-simple example could be considered to be a bug. If the condition is ever true the function will return an undefined value, but the condition will never be true so you couldn't possibly return an undefined value. It's not at all uncommon to find code with similar logic scattered throughout - improperly defined loops, conditionals, etc. could result in theoretical bugs that no path of execution can actually get to.
Then there are the kinds of bugs that only occur in extremly specific situations. About 13 years ago I had to track down a bug that caused a report package to crash. It took me a while to figure it out but eventually I did. The program would crash only on specific days. It'd only crash on Wednesdays. It'd only crash on certian Wednesdays - Wednesdays in September. Even more specifically, usually only the 3rd or 4th Wednesday in September.
The bug was that whoever wrote the code that printed a header on the reports was extremely anal about memory usage. He calculated exactly how many characters it would take for a buffer to hold the full date. The problem was he miscalculated by 1 character. With "Wednesday" being the longest day spelled out and "September" being the longest month, a 2 digit date (eg. Wednesday September 23) meant that the full date string would overflow the buffer by 1 character. This kind of bug wouldn't show up very often - only a few times a year - but it was a pretty nasty one when it did.
Re:20-30 bugs per 1000 lines??? (Score:3, Informative)
I said -pedantic gives warnings. (Score:3, Insightful)
-pedantic
Issue all the warnings demanded by strict ISO C and ISO C++; reject all programs that use forbidden extensions, and some other programs that do not follow ISO C and ISO C++. For ISO C, follows the version of the ISO C standard specified by any -std option used.
-- That seems to be exactly what I described it as doing.
Now, you choosing to make standards un-conformance into a warning rather than an error is something else. (Old) C defines the default return type to be int,
Re:20-30 bugs per 1000 lines??? (Score:3)
Re:20-30 bugs per 1000 lines??? (Score:5, Insightful)
It's not.
There are bugs that affects applications to a level the user notices, and there are bugs that affect the maintainability of the code, the reusability of the code, and the ease of use of the code. Most bugs are hidden from the user's view.
Does a stack overflow in a piece of code that only occurs when a craftily created exploit is executed constitute a bug? Yes it does -- even when no exploit exists. Under normal operations it does not affect the use of the system -- at least not until an exploit is developed and widely used. The fact that Windows, especially the older versions of the OS, were vulnerable to so many simple exploits illustrates the bugginess of the code. And most of the bugs are not even in close enough to the surface to be so readily exploited.
Does an end user see API bugs? Does anyone outside of Microsoft experience architectural flaws in the Windows OS? No, but that does not mean they do not exist.
What about code that misbehaves when presented with certain data. That may not be a problem for the original application that the code was written for, but any time that code gets reused, the programmer must know about these "hidden features" (read: bugs). Again, the user never sees this sort of bug.
The number they came up with wasn't pulled out their ass. See this article on measuring bugs [ganssle.com] for a more detailed discussion on the topic.
When reading it, bear in mind that most commercial software is produced for in-house use, receives very little QC, and frequently does not even compile cleanly. It's usuall just "good enough" to get the job done.
Re:Congratulations... (Score:2)
Also, if they're so good at identifying them, is it much different to fix them?
I'm an EE, not a CS, so I'm not familiar with hardcore
Re:Congratulations... (Score:5, Informative)
1. code patterns -- if you see something that looks like a pattern, it is probably a bug... "if(x = 0)", for example. of course, you have to check that it actually IS a bug, but you can catch certain common things that way.
2. type safety -- tools can go through your code (either statically or while it's running) and look for type violations. for example, you might write an int to an unsigned int, or mix up pointers and ints, which could be bad. you can catch a stunning number of bugs this way.
3. pointer analysis -- another annoying bug can be in aliasing, where you have multiple pointers that may or may not be pointing at the same memory. are you really
I'm not sure what sorts of current tools are released by these researchers, but this is a very basic overview of the techniques I've heard about people using recently. (Repeat disclaimer: I'm a theorist.)
Lea
Re:Congratulations... (Score:3, Informative)
p = malloc();
if(!p)return;
q = malloc();
if(!q)return; <= Memory leak if this happens
Re:Congratulations... (Score:3, Informative)
How can one be sure (Score:5, Insightful)
Re:How can one be sure (Score:3, Informative)
Actually "Windows XP" isn't a Kernel. The kernel of Windows XP is called the actually called the "NT Executive" - which is composed of the Hal (Hardware abstractiomn..), Microkernel and kernel services ( device drivers,.. ).
Windows XP Architecture [senecac.on.ca]
Re:How can one be sure (Score:3, Funny)
This may explain the Windows crashes. "Sorry Dave, I cannot let you do that."
Re:How can one be sure (Score:3, Insightful)
Well, the number of lines of code in the code base isn't strictly relevant, but comparing an unquantified rate of bug discovery against a quantified absolute number of bugs doesn't sound like sound practice to me.
It also makes no statement about the relative severity of the bugs - 100 trivial bugs with simple workarounds would certainly be worth fixing, but
Conflict of interest... (Score:5, Funny)
Re:Conflict of interest... (Score:2)
Re:Conflict of interest... (Score:5, Funny)
See Also: Diebold [wikipedia.org]
Not serious? (Score:2)
It can still make for a helluva mess if there is unexpected data (past a certain range, called by a different function with a wider range, while in a wrong state etc.) Perhaps it'll bring the program down in flames out on the users machine, but tracking it down might be hell. So
Re:Conflict of interest... (Score:3, Insightful)
Re:Conflict of interest... (Score:3, Insightful)
Why do people always look for the worst in things? Yes, you have to have a certain level of paranoia when coding as
What about the ones they missed? (Score:3, Informative)
Of course, we must remember, "It's not a bug, it's a feature!"
Re:What about the ones they missed? (Score:2)
Re:What about the ones they missed? (Score:3, Funny)
Like the man said...
There are bugs we know we know.
There are bugs we know we don't know.
There are bugs we don't know we know.
There are bugs we don't know we don't know.
Power of Open Source (Score:2)
sigh... (Score:2)
which compares very well to a rate of "very frequently" on "less" lines of code. probably at least 2-3 times better - or "more".
Re:sigh... (Score:3, Interesting)
Bug Fixes (Score:2)
1. Are these the only bugs to be found in the Linux kernel?
2. Now that these bugs have been identified, should these bugs be fixed would that mean that Linux itsself could truthfully be classified as "bug-free" or am I missing something?
Bug Fixed ! (Score:2)
Apple != Orange (Score:5, Interesting)
The Windows XP code base includes all of the extraneous crap that gets bundled with and on top of the kernel.
The "Linux" code base just includes the kernel.
LOC != codetype (Score:2)
Re:Apple != Orange (Score:5, Insightful)
This is what you get for integrating your web browser into your operating system. Legality aside, there was a low cunning to that business move when M$ did it. Now, however, that decision is coming back to bite them on the tender bits: the browser is part of the OS, ergo bugs in the browser count as bugs in the OS.
Re:Apple != Orange (Score:5, Insightful)
Do you use only the Linux kernel? No. You run Slackware, or Fedora, or SuSE (my personal choice), or Gentoo, or something. A fresh copy of the latest version of a distribution is what should have been analyzed. All of the other stuff that's piled onto the kernel is what you use, such as the GUI, time-killing games, and all the other shit that a standard XP install disc contains. You don't click on line 11359 of the Linux kernel to open up Konqueror. You click on an icon, which starts a process that you use. The stuff piled onto the kernel is far more buggy than the kernel would be. I'd bet that a distribution of Linux is still far less buggy than Windows is, but it's certainly not 985 vs. 800,000. For example, when I minimize my windows on XP, there isn't hard drive activity for the next five minutes, as can happen with SuSE with not very much open. I'm sure something's misconfigured, but if a distribution, in 2004, is that poorly configured by default, then that's a bug.
Re:Apple != Orange (Score:4, Insightful)
Exactly how does making the browser part of the operating system make Windows more usable?
Because they did this, I now can't remove IE if I want to. I have trouble with outlook if I set mozilla as my default browser. I can't upgrade IE without patching the OS (which means other programs that use IE components might break). There is no way for me to downgrade to earlier browser versions. There is no way for me to have multiple versions of IE installed, so it makes it hard to test. Because IE is in the operating system, Microsoft has delayed releasing new features until the next version of the OS is shipped.
I can't think of a single thing that integrating the browser into the OS buys you, except some code reusability. From my engineering perspective, this wasn't done for any legitimate engineering reason, but because of legal and business reasons.
Re:Apple != Orange (Score:4, Informative)
And both can be achieved without OS integration. Rendering for any 3rd party app can be direct to the video driver if the OS allows it. That's not integration.
It's already been proven that startup time for all Office apps is from hidden API calls near the start the executable code. They load the visual interface before the application's actually ready for use. That plus pre-loading of DLLs gives fast startup. Office isn't considered part of the OS, yet IE is. Therefore fast startup times have nothing to do with integration.
Try supporting 5 different applications vs. one. Over the phone. With a user with no training or previous knowledge.
I have. An entire office of old-fashioned accountants who prefer ledgers and pencils. How is blending 2 apps tightly together better than having 2 separate apps? If there's a problem with Firefox I can tell someone to not launch it. If there's a problem with IE parts of it are in memory whether I choose them to be or not. If there was less integration in Windows then it could be trimmed down to a minimal size for each user. Instead everything including the kitchen sink must continually be supported. You're only increasing your headache by using Windows and its tight integration.
I'm questioning the statistic mentioned is valid or not. Can this number even be trusted?
Not as purely fact. Yet someone who reads the study may determine that it's better to have the code open to all who can fix bugs instead of one select group. Or it may give insight to management that security can be better achieved when they can have their own people analyze the code. When read properly I don't see how anything but good can come from a study such as this.
Re:Apple != Orange (Score:3, Insightful)
The "Linux" code base just includes the kernel.
MS gets dinged all the time (at least by us UNIX guys) for what crud they put into the kernelspace, and much of that "extraneous crap" has caused a number of security and stability issues over the years.
Windows and Linux are fundamentally different in design and purpose. And I do believe that most of the "extraneous crap" code should be included in
Desktop OS (Score:2)
If you're really itching to do a Windows vs. Linux comparison, you should at least be looking at Windows 2000 or Windows 2003.
Re:Desktop OS (Score:2)
Very accurate count (Score:2)
985 bugs? That sounds like an exact number. Of course that is possible, it being open source, but I hope they don't believe that they found them all. Debugging is quite a profession on itself, and I don't think anyone has found the ultimate "solution" for it.
Anyway, I sure hope they at least reported the bugs they found. Being the best is no reason not to want better. (And no, I did not imply that Linux is the best existing kernel.)
This headline from the No Screaming S--- Dept. (Score:2)
Not completely scientific (Score:5, Interesting)
"[Linux has] 985 bugs in 5.7 million lines of code, well below the industry average for commercial enterprise software. Windows XP, by comparison, contains about 40 million lines of code, with new bugs found on a frequent basis."
So Linux has 985 bugs. Windows has bugs that appear frequently. Ok that doesn't really tell me anything. I tried to dig a bit deeper [zdnet.co.uk] and came up with: "Coverity has not analysed the source code to Microsoft Windows because the company does not have access to the source code, Hallem said. Apple Computer's Mac OS X has a great deal of proprietary programming, but the core of the operating system is based on BSD, an open-source operating system similar to Linux."
So everything is based on estimates. Now, you know and I know that the Linux kernel has less bugs... but this is a tentative (at best, shoddy at worst) way of presenting that idea.
Plus (Score:3, Insightful)
The whole thing kind of strikes me as people talking out of their ass.
Number of rivals? (Score:2)
Huh? (Score:2)
Linux Kernel vs Windows XP (Score:3, Insightful)
What about if you throw in KDE or GNOME, Mozilla, etc, everything that you'd have to add to really equal the features of Windows XP....
Re:Linux Kernel vs Windows XP (Score:3, Informative)
Crashing the Windows shell will nuke the whole box, web servers, ftp servers, application servers and all.
Obviously the distinction for a desktop user is minor, since your desktop is gone and your work with it, but if you are running servers the separation is VERY important. A KDE crash (unlike a hard lock from windows shell bringing down the system) doesnt lead to:
Service unavailability for customers.
Possible disk corrup
Re:Linux Kernel vs Windows XP (Score:3, Informative)
Re:They counted bugs per lines of code (Score:3, Interesting)
Re: (Score:2)
Four Years? (Score:2, Insightful)
The 2.6 kernel isn't even a year old yet. How'd they do a 4 year analysis?
No I didn't RTFA.
Statistics (Score:2, Informative)
Moderate this comment
Negative: Offtopic [mithuro.com] Flamebait [mithuro.com] Troll [mithuro.com] Redundant [mithuro.com]
Positive:Insightful [mithuro.com] Interesting [mithuro.com] Informative [mithuro.com] Funny [mithuro.com]
Apples and oranges... (Score:2)
I'd assume each flaw in Windows would actually result from multiple bugs (incorrectly defined data structure
with 40 million lines oif code (Score:2)
Wow, from the standard of their bugs thre's got to be some _really_ good ones in the source somewhere:-]
Keeping Things In Perspective (Score:2)
Interesting, but the comparisons are flawed.. (Score:2, Interesting)
Also "Windows XP, by
Just the kernel (Score:2)
What really matters is what you run on the thing, many security issues occur outside of the kernel.
985 bugs makes jack a dull boy... (Score:2)
Kill my karma all you want, but the jab at windows ruins any objectivity in the article. Its obvious that they didn't research the actual number of bugs in microsofts product, so really this is just a marketing pitch for open source instead of an actual reason to embrace it.
The real question... (Score:3, Insightful)
Mistaking symptoms for bugs (Score:3, Insightful)
The best you can hope to do is to count the number of *symptoms*, but that's not the same thing as bugs. It's possible, even likely, that a single bug in the code manifests itself as 100 apparently different external symptoms.
So this comparison is apples to oranges and completely meaningless.
So in all this code auditing... (Score:3, Funny)
Update (Score:4, Funny)
Where do they get these numbers??? (Score:3, Interesting)
I'm going to call bullshit on this. Maybe this number is based on some rule that every variable must be asserted, everything exception checked, etc. (even if these conditions rarely or never happen).
If they're counting bugs like I count bugs - i.e., in a normal operating environment the software loses data, produces incorrect results or limits operability then there is no way that a commericially viable product can have this number of bugs.
smells like BS (Score:5, Insightful)
How do you analyze 5.7 million lines of code except to run it through a static analyzer? Static analyzers can't detect most errors, which tend to be data dependent. So a company selling an uberlint donates their tool, 5 academics run it and write a paper. *Blech*
Commercial software typically has 20 to 30 bugs for every 1,000 lines of code Bull. Software with 20-30 errors per KSLOC doesn't work. (I know, I just spent a year trying to save a project that had 10 errors per KSLOC. Even at that defect density (found and fixed) it was undeliverable. Notice that the link in TFA doesn't take you to anything that supports this assertion, just to the organization's home page. I could't find anything to support these numbers.
Weasely non-comparisons: 2.6 Linux production kernel, ... contains 985 bugs in 5.7 million lines of code as opposed to Windows XP, by comparison, contains about 40 million lines of code, with new bugs found on a frequent basis.What, bug in Linux are found on an infrequent basis?
This is all hot air.
OK (Score:3, Funny)
I hope they submitted a patch
Bug This! (Score:3, Interesting)
The report, set to be released on Tuesday, states that the 2.6 Linux production kernel, shipped with software from Red Hat, Novell and other major Linux software vendors, contains 985 bugs in 5.7 million lines of code, well below the industry average for commercial enterprise software.
Commercial software (at this point in time) has its priority on releasing new versions often. Because each release is a salable item. Linux on the other hand gets forked or changes version whenever "Linus feels its ready". BIG DIFFERENCE. Here's why.
Commercial software decide how much value is on each bug, if the bugs are cheap (not show stoppers), but minor things they can't forsee as causing them to lose money... They will ship it. Acceptable known bugs. Project management decision.
Open source has time on their hands. They can look over the code carefully, waste time on bugs that commercial outfits wouldn't even bother... But the problem (like with software project management) is that you can't tell which bugs will be the nasties when you choose to ignore them. Less bugs == more secure software, less nasties.
If commerical software decided to play the careful release, minimize bug game... They would make less money initially, but in the end it would work out. Microsoft and ilk can certainly compete with linux, but they made a choice long ago not to. They made a choice to RELEASE FAST and MAKE MONEY FAST! (hey, that sounds like spam).
m
Flawed comparison (Score:3, Insightful)
Of course it is.
Most proprietary software are user-level apps where a bug here or a bug there isn't critical. The economic loss that can be atributed to a bug in MS Word's bullet-point-algorithm isn't as great as a datacenter going down due a Oops in the linux-box running the SQL-database. To put it simply: there are different requirements for different tasks. A comparison between the quality of WinXP's GUI and GNOME for example would have been much more interesting.
I don't understand how this story could make slashdot's frontpage.
Re:Flawed comparison (Score:3, Insightful)
You don't understand how the story could possibly make the frontpage. To those that know how slashdot really works, it was inevitable that once this story was written, it would reach the front page.
oh man I messed that up bad.
Classic case for the do-nothing argument (Score:4, Insightful)
Linux Has Fewer Bugs Than *One* Rival (Score:3, Interesting)
How about comparing it with MacOS/X, FreeBSD and others?
Re:huh :) (Score:2)
At least a totally freaking obvious story is better than a redundant one. ;-)
Re:More /. FUD (Score:3, Insightful)
Re:20-30 bugs for each 1000 lines??? (Score:3, Insightful)
I found a bug in your code already.
Re:partisan hackery (Score:3, Insightful)
Believe it or not, we're supposed to give Microsoft some credit for their recent good efforts. We're supposed to accept that someday in the future, they will ship secure, high quality software.
That may yet happen, and indeed XP SP2 was a good step, but a soild Microsoft system is still vapor.
Faced with superior products already existing on the market, Microsoft has consistently promised and promised and promised vapor... in the hopes of persuading everyone to keep on
Another obvious biased stance (Score:3, Insightful)
Now I can see maybe comparing the kernel mode code. Windows throws a lot of stuff in the kernel, much of which UNIX types disagree with. Basically the whole graphics subsystem, including rendering e
Re:Kernel is not the problem (Score:3, Informative)
You might want to talk to Nvidia about that. They are able to produce a driver that does this, but they choose not to.