Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

Create Account  |  Retrieve Password

Study Reports On Debian Governance, Social Organization

Posted by CmdrTaco on Mon Apr 14, 2008 09:07 AM
from the because-they-can dept.
andremachado writes "Two academic management researchers, Siobhán O'Mahony and Fabrizion Ferraro, performed a detailed scientific study about Debian Project governance and social organization from the management perspective. How did a big non-commercial non-paying community evolve to produce some of the most respectable Operating Systems and applications packages available? Organizations without a consensual basis of authority lack an important condition necessary for their survival. Those with directly democratic forms of participation do not tend to scale well and are noted for their difficulty managing complexity and decision-making — all of which can hasten their demise. The Debian Project community designed and evolved a solid governance system since 1993 able to establish shared conceptions of formal authority, leadership, and meritocracy, limited by defined democratic adaptive mechanisms."
+ -
story

Related Stories

This discussion has been archived. No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More
Loading... please wait.
  • by msauve (701917) on Monday April 14 2008, @09:11AM (#23062902)
    it was an anarcho-syndicalist commune, where they take it in turns to act as a sort of executive officer for the week, but all the decisions of that officer have to be ratified at a special biweekly meeting.
  • The Debian Project community designed and evolved a solid governance system since 1993 able to stablish shared conceptions of formal authority, leadership and meritocracy, limited by defined democratic adaptive mechanisms.
    That sure in heck sounds like something the government would put out.
  • How a big non-commercial non-paying community evolved and actually produces some of the most respectable Operating Systems and applications packages available?


    Look, I'm not saying that debian isn't awesome, but who payed them to say that?
      • My guess:

        How did a big non-commercial, non-paying community [evolved and actually] evolve into one that produces some of the most respectable Operating Systems and applications packages available?
    • having used both extensively, I'd say they're remarkably similar, though in debian you do have to do a few more things manually.
      • by wanderingknight (1103573) on Monday April 14 2008, @09:45AM (#23063378)
        Debian is essentially the same as Ubuntu. But if you know your way around Linux, every distro is essentially the same.
        • Re: (Score:3, Insightful)

          Once it's installed and running then there are a lot of similarities. OTOH the distinguishing features are often ease of installation and upgrade, whether or not you can use it in a live CD way, supported platforms (I 3 debian for it's ARM support), size of install (DSL/nDSL is great for a bootable USB stick ) etc etc etc

          But yeah, essentially, one desktop linux is usually much the same as another.
          • true, but it can take years to properly know your way around linux and that's one hell of a learning curve (not to say it's not worth it but for your grandma!)
          • And prepackaged applications. Some distros (Debian) have more prepackaged applications than others, making it easier to install more software.
      • having used both extensively, I'd say they're remarkably similar, though in debian you do have to do a few more things manually.
        That is probably Debian is "the rock upon which Ubuntu is built". http://www.ubuntu.com/community/ubuntustory/debian [ubuntu.com]
      • Re: (Score:3, Interesting)

        From their own description [ubuntu.com] of the OS...Ubuntu and Debian are closely related. Ubuntu builds on the foundations of Debian architecture and infrastructure, with a different community and release process. ... Debian is "the rock upon which Ubuntu is built".

        Ubuntu is a derivative of Debian. A very good one.

        InnerWeb

    • by FauxPasIII (75900) on Monday April 14 2008, @09:47AM (#23063416)
      > Ubuntu is 10x better than Debian

      Ubuntu IS Debian, for all intents and purposes. They take the excellent work that Debian publishes, do some additional (and IMO also excellent) work to refine it, and republish that as Ubuntu.

      I'm completely outside of the Debian and Ubuntu communities, but I suspect strongly that Debian re-imports some of the Ubuntu refinements into their own project, as well.

      Ain't FOSS grand?
      • Some, but not all. (Score:5, Interesting)

        by SanityInAnarchy (655584) <ninja@slaphack.com> on Monday April 14 2008, @10:35AM (#23064246) Journal
        Debian doesn't seem to mind Ubuntu, for the most part, except when Ubuntu users come to Debian forums asking for help.

        But a simple example: Debian, for the longest time, had /bin/sh linked to /bin/bash, although they did have a rule that any script requiring /bin/sh should only use POSIX syntax, and not bash-isms. Sometime in 2006, I think, Ubuntu switched /bin/sh to /bin/dash. Dash is much faster than Bash -- so much so that this switch is the main reason that version of Ubuntu booted so much faster than previous versions (it was also when Upstart was first integrated, though Upstart is barely used)...

        And since then, certainly, fixes to various packages' scripts which claim #!/bin/sh, but really want bash, have been sent back to Debian. (Either POSIX-ify them, or make them explicitly ask for bash.) But as far as I know, no major distributions outside Ubuntu actually have /bin/sh linked to dash -- some of Amazon's EC2 tools, designed to work on Fedora, need to be patched before they can work on Ubuntu, for that very reason.
        • by leoboiko (462141) <leoboiko AT gmail DOT com> on Monday April 14 2008, @12:28PM (#23066306) Homepage
          To be fair, I think debian's dash package prompted you to link /bin/sh to it since before Ubuntu came around. It's true that it wasn't the default, though; you had to manually install dash and explicitly select "yes" in the debconf dialogue.
        • Re: (Score:3, Insightful)

          But a simple example: Debian, for the longest time, had /bin/sh linked to /bin/bash, although they did have a rule that any script requiring /bin/sh should only use POSIX syntax, and not bash-isms. Sometime in 2006, I think, Ubuntu switched /bin/sh to /bin/dash. Dash is much faster than Bash -- so much so that this switch is the main reason that version of Ubuntu booted so much faster than previous versions (it was also when Upstart was first integrated, though Upstart is barely used)... And since then, certainly, fixes to various packages' scripts which claim #!/bin/sh, but really want bash, have been sent back to Debian. (Either POSIX-ify them, or make them explicitly ask for bash.)

          If your shell script is not POSIX /bin/sh, don't mark it as a POSIX /bin/sh script. Is that difficult?

          FWIW The trick to use dash as /bin/sh was well known by loads of Debian users back in the day when it was still called "ash". It did wonders to the boot time of my old ole PentiumII.

          FWIW 2 The first people to actually make the choice of setting dash as /bin/sh, were the Nokia folks that released the N770 internet tablet that runs a Debian based system.

          The use of it in N770 lead to loads of scripts b

          • If your shell script is not POSIX /bin/sh, don't mark it as a POSIX /bin/sh script. Is that difficult?

            If it's not a shell script, and not mine, then yes. I have to crawl through and find every "system" call that looks suspiciously bash-like... Or I have to temporarily relink /bin/sh, or run it in a chroot.

            FWIW The trick to use dash as /bin/sh was well known by loads of Debian users back in the day when it was still called "ash".

            Just pointing out that Ubuntu forcing this on users pretty much ended the ran

        • The question really isn't about POSIX compliance: many (e.g. me) users expect that /bin/sh is actually /bin/bash and nothing would change that.

          From my understanding, the only significant use for ash and dash is bootstrap which is performance critical. They are not going to replace /bin/bash any time soon.

          P.S. dash [wikipedia.org]

        • Yea, I've used debian with /bin/sh pointing to /bin/dash long before ubuntu made it the default setting. The command that does the switching is "dpkg-reconfigure dash". I checked the Wikipedia article about dash and it seems that ubuntu switched to dash a bit hurriedly. The article says that "the transition in Ubuntu to making dash /bin/sh broke numerous shell scripts that relied upon Bash-specific functionality". Typical of ubuntu. The same article says that debian will switch to using dash as the defaul
      • Re: (Score:2, Informative)

        Ubuntu is *not* Debian. Ubuntu is based on Debian, but has very different priorities.

        Debian supports 11 hardware architectures. Ubuntu supports only 3, and as a result can provide much more polished results.

        Likewise, Debian maintains 18,000+ packages. Ubuntu maintains significantly fewer packages, but provides much more polished packages for the ones they do maintain.

        Debian has militant standards for stability, often leading the software in their stable release to be a couple years behind the cu
    • Ubuntu is 10x better than Debian
      Um, Ubuntu is Debian [ubuntu.com] plus polish.

      • Re: (Score:3, Informative)

        When will the Ubuntu crowd come to their senses and finally understand that they are in fact running a DEBIAN system?

        LOL. Whole point of Ubuntu that users (the "crowd") do not have to care about - least understand - what they are running.

        Ubuntu is made for end-users as an OS which just runs and doesn't require any understanding of what and how it does.

        That's pretty much why Ubuntu != Debian.
        Debian is technology - for engineers and advanced users who want total control over their system.
        Ubuntu

    • Re: (Score:3, Interesting)

      In my experience, they're pretty damn similar. If you want to compare defaults (Ubuntu Server Edition with everything needed for LAMP/SSH/DNS vs Etch with the same packages), Ubuntu is larger, uses more resources, and handles dependencies much better (<3 autoremove). As for the desktop edition, the only real difference (besides the brown) is the update notifier.
      As for ease of installation, Ubuntu dumbs things down (on the desktop edition) for the 'I'm afraid to touch this' crowd, and Debian has the 'Good
      • Re: (Score:1, Funny)

        by Anonymous Coward
        The malt liquor icon on the Ubuntu bootup is finally explained by this young man who toots and jenks.
  • by MECC (8478) on Monday April 14 2008, @09:35AM (#23063260)
    I for one welcome our debian ... nevermind.

  • PostgreSQL (Score:3, Insightful)

    by Anonymous Coward on Monday April 14 2008, @09:39AM (#23063298)

    Those with directly democratic forms of participation do not tend to scale well and are noted for their difficulty managing complexity and decision-making â" all of which can hasten their demise.


    Show me the PostgreSQL project's org chart. Show me the evidence that the project is not kicking ass.
    • Postgresql does indeed kick ass.
    • Well here's some data on Debian [ohloh.net]. And here's some data on Postgres. [ohloh.net]

      More importantly, Ohloh suggests two people perform the bulk of the commits. I don't know much about postgres development, but it appears that there isn't much democratization in development. Which is fine. You want gate keepers to be able to ward off performance harming patches, and to guide those who are only peripherally interested in the project.
  • On the one hand, it's nice to see some analysis on more loosely organized software projects. It's definitely not something that the average corporate sponsored University department would do.

    It's also funny to see how short most enthusiasts memories are. Pre-Sarge, Debian was being criticized for everything under the sun.

    As an off-topic FYI, Debian Testing is in fine shape for a KDE desktop. I'm running two simple servers on testing and there are no show-stopper bugs. Get your Beta installation disk toda
    • Pre-Sarge, Debian was being criticized for everything under the sun.

      Then they fixed it. Now it's great. Can't see the problem really. :)

    • there are no show-stopper bugs. Get your Beta installation disk today!

      And following install apt-bugs, so your system also won't have show-stoper bugs tomorrow.

  • Link to Article (Score:3, Informative)

    by ArIck (203) on Monday April 14 2008, @10:25AM (#23064044)
    The site has been slashdotted apparently but no fear, it does not contain anything useful information about the research anyways. You could download the original draft submitted to the journal at http://www.business.ualberta.ca/tcc/documents/TII_3_OMahoney_Ferraro_final.pdf [ualberta.ca]
    [quote]
    The following is the quote from google's cached version:
    Scientific study about Debian Project governance and social organization

    André Felipe Machado

    TerÃa-Feira, 27 de Novembro de 2007

    Two academic management researchers performed a detailed scientific study about Debian Project governance and social organization from the management perspective.

    The study analyzed 13 years of Debian Project history, interviewed some Project participants and previous Leaders, and carefully observed patterns.

    The open nature of history, registered at discussion lists archives and irc logs, meetings reports, helped a lot during the data collection phase.

    The study is VERY interesting as scientific analyzed HOW an open source project survived, evolved and flourished during 13 years, overcoming many troubles only challenged by long term BIG communities, reaching a solid institutional foundations to resolve disputes.

    The previously releasead version of the text can be found here.

    The latest revised version, published at the Academy of Management Journal, Oct 2007, Vol. 50 Issue 5, p1079-1106, 28p; (AN 27169153), is copyrighted and can not be published here.

    The authors are SiobhÃn O'Mahony , Assistant Professor at the University of California's Graduate School of Management, and Fabrizio Ferraro , General Management Professor at IESE

    Versão para impressão

    Baixar PDF Baixar a versão PDF desta pÃgina

    [/quote]
    • Hello, Actually, the google cache holds a very old article version. The present version has a convenient "compressed" 4 page text from the 65 study paper. At this momement, the site (into a very cheap hosting plan) is being slashdotted. You will have to wait a bit until it the tsunami passes .... Regards.
    • Hello, Actually, the google cache holds a very old article version. The present version (from this week) has a convenient "compressed" 4 page text from the 65 study paper. At this momement, the site (into a cheap hosting plan) is being slashdotted. You will have to wait a bit until it the tsunami passes or read the entire original 65 page study. Regards.
  • I have always been disappointed in ubuntu. Way too much crap thrown together that I don't need and I hate release schedules. I have been running debian-testing for a couple of years. It is always up to date, no need to do wacky reinstalls every 6 months. I always laugh at the ubuntu fan boys ranting about how they just upgraded to the latest release and about how they are up to date now. Even the latest release is several months behind debian-testing and I didn't have to anything except "aptitude upgra
    • Clearly, since you know what's aptitude is, Ubuntu isn't for you.

      As much as I hate Ubuntu, you point is silly. Ubuntu is made so that even idiot can use it. If you are not idiot - then move on. But some people - especially some ex-Windows pro-users - are very happy to have stable OS and 6 month upgrade cycle which really improves OS.

    • Re:Debian Rules! (Score:4, Interesting)

      by xenocide2 (231786) on Monday April 14 2008, @02:23PM (#23068034) Homepage
      Ubuntu in many ways lit a fire underneath Debian. I liked Debian in 2002; by 2004 I was getting a bit tired of stupid jokes about being out of date, and I was tired of running development versions just to get a modern desktop. For example, the last version of xfree was finally released around the same time most distros were shipping the new and shiny xorg project x server. So when Ubuntu came around, that was great. They brought in some X guys to hammer Xorg into a working package, at great personal sacrifice. They made a push for Default debconf priority, to large success. They adopted a LiveCD approach while Debian was adamantly fighting Knoppix. They had a Code of Conduct that laid out some important ground rules that Debian was missing and refused to find. The brought a focus on the desktop that I felt Debian was lacking. And they had a commitment to releasing frequently. Six month releases is a step back from someone like me who used to run Debian unstable, but I was getting tired of random kernel pushes breaking video drivers and the like.

      Don't get me wrong; Debian testing is probably great for lots of people. If Ubuntu's trajectory continues as it is, I may one day return to Debian; as a result of Ubuntu's successes, they've adopted a number of Ubuntu's practices and policies. For example, they've adopted a wiki for community development, and a new proposal system for evaluating large scale decisions. And meanwhile, Canonical's success with Ubuntu has it focusing on strange contracts that draw resources from fixing bugs related to my personal uses.

      As for your comparison essay, the "ubuntu-desktop" meta package now suggests / recommends most things, and apt is set to bring them in on updates but not remove the meta package if they're removed. That way, they can bring in new features, and you can opt out of some of them, and it'll remember that. The bloat charge is a bit unfair. The default install is something usable out of the box. You're free to do the minimal install the same way you did with Debian, but disk space is cheap these days, and people only have so many hours in a day. Hating release schedules is a bit silly. One way you update everything at once, and the other the updates trickle down to you. The everything at once has the advantage that you can deploy new compilers / libc during the early fork without worrying that someone will accidentally screw themselves. Of course the downside is that pidgin may be outdated quickly, but I think it's been fairly lucky at not breaking network compatibility recently.
  • So, Tavistock, we just registered a spike in the use of the word "Governance" this week.
    What gives? Getting the serfs used to it are we?