Sun May Begin Close Sourcing MySQL Features 509
An anonymous reader writes "From the MySQL User's Conference, Sun has announced, and former CEO Marten Mickos has confirmed, that Sun will be close sourcing sections of the MySQL code base. Sun will begin with close sourcing the backup solutions to MySQL, and will continue with more advanced features. With Oracle owning Innodb, and it being GPL, does this mean that MySQL will be removing it to introduce these features? Sun has had a very poor history of actually open sourcing anything."
This is great news.... (Score:5, Insightful)
Would you like another round of ammo with that foot gun Sun?
Re:This is great news.... (Score:5, Insightful)
The one remaining question is mindshare. For example, pretty much every ISP offers MySQL as part of a basic hosting package. No one's saying they have to stop doing that, but are they going to start offering other open source DBMSs in the same way now? I sure hope so.
Re:This is great news.... (Score:5, Interesting)
I've been using PostgreSQL on-and-off for about 7 years now, and I have to say: it's *all* gotten a lot better.
In fact, feel free to check out (I think it's on Safari) how slick things have gotten, try Korry Douglas' book (forgot the title right now). I think it's a stellar example of book writing in general, and does a very good job of explaining a lot of the advanced features (like clustering, failover, etc).
I won't miss MySQL one bit--PG rules!
Re: (Score:3, Informative)
Re: (Score:3, Informative)
The guy isn't complaining, he's just saying that PG does it better. And it's true.
Re:This is great news.... (Score:5, Interesting)
Alternatively, here's what I do in phpPgAdmin: click Table, click Triggers. There's a list. I can edit it by clicking on a specific trigger. phpMySql has no such interface to triggers, and every view, creation and edit must be done by manually typing in the SQL (but, based on the tone of your reply, I'm sure you knew that). Maybe you have time for that, and it's not a big concern (on what terms do you get paid?). For any serious database development, it strikes me as a grotesque waste of time.
Re:This is great news.... (Score:4, Informative)
http://www.navicat.com/ [navicat.com]
Post / Grez / Queue /El (Score:4, Informative)
Because it is such a common question (and such an odd name), it is aptly an entry in the PostgreSQL FAQ [postgresql.org].
If you don't like my phonetic spelling and prefer IPA, Wikipedia has you covered. [wikipedia.org]
Many people, myself included, simply call it Postgrez.
Re:This is great news.... (Score:5, Informative)
The only caveat that typically hangs up new users (especially ones coming from a MySQL background) and is not particularly clearly documented is the default authentication mechanism.
By default (at least on many distributions), Postgres uses "ident" authentication, which means no password is required for database logins on a local socket. What *is* required, on the other hand, is that you must be logged in/running as the UNIX user of same name. Obviously this poses problems for webapps that want their own database user and is generally just very confusing for users who are used to the database having its own independent set of usernames and passwords (which Postgres still does, for remote connections... causing further confusion)
Of course, like any good database Postgres will be more than happy to handle its own user authentication entirely natively, you simply have to use md5 instead of ident in pg_hba.conf [google.ca]
Re:This is great news.... (Score:4, Interesting)
Re:This is great news.... (Score:4, Informative)
Re:This is great news.... (Score:4, Informative)
Re:This is great news.... (Score:5, Interesting)
Re:This is great news.... (Score:5, Funny)
yeah the whole thing.
Re: (Score:3, Insightful)
Re: (Score:3, Informative)
The architecture that is being suggested for backup here is in fact open source friendly, as Sun could just as easily have decided to NOT implement the provisions for it in the GPL code base. As it is now, there will be plenty of opportunity to hook up your own backup stuff, which is a good thing.
Re:This is great news.... (Score:5, Interesting)
All the community, documentation, and speed in the world wont make up for lack of features.
I'm no dbms expert but when I first started learning about relation databases, wow, seems like 6+ years ago now, it was obvious from reading the features of mysql versus postgresql that there was no making up for the fact that mysql wasn't a real relational database. Since I was learning about relational databases I never even bothered with mysql and jumped right into postgresql. So I guess I'm biased but I never ran into a problem with tools, libraries, documentation, or community support.
Mysql has made many improvements since then, and I even started to play with it as I've been working on some open source projects which are web based applications and as such may need to support the widely popular mysql. So far its not bad, but it would be nice if their mysql command line tool would do TAB completion as psql does. It always takes me a few tabs before I realize that mysql isn't going to help my lazy ass out.
burnin
Re: (Score:3, Interesting)
Re:This is great news.... (Score:4, Insightful)
Apples and Oranges (Score:3, Informative)
And constraints in MySQL? Is that why CHECK constraints were silently ignored for so many years? What you call "constraints," I call "th
Re:This is great news.... (Score:5, Insightful)
Well stated.
When your learning about referential integrity but the RDBMS doesn't support it your stuck in a conundrum. Unless you choose an RDBMS that actually does its job of keeping the database relational.
Re: (Score:3, Informative)
At least that is the case in mysql 5.0.45-6
Re:This is great news.... (Score:5, Informative)
As to tools, I'm not sure what you're after, as postgres has less need for addon tools than mysql, doing more via SQL instead. The only thing that's especially tricky in configuration is pg_hba.conf -- but comparison with mysql's user auth shows the complexity to be worthwhile.
Re: (Score:3, Interesting)
The only thing that's especially tricky in configuration is pg_hba.conf -- but comparison with mysql's user auth shows the complexity to be worthwhile.
Amen. User access privileges positively drive me nuts about MySQL. It is completely inane. Different passwords for the same user for different hosts and/or databases? Guuuuh!
PG works exactly as should be expected, with the added benefit of hierarchical roles. It may be good to change the default auth method from ident to md5, though.
Re:This is great news.... (Score:5, Insightful)
For the web I started off with Postgres but eventually had to move to MySQL because it has such wide support, but as I use InnoDB I've grown more and more uneasy at seeing Oracle and Sun buy off chunks of MySQL.
Even putting aside any arguments about performance/features (not that Postgres is bad in this regard), PostgreSQL would be better as an FOSS DB standard, just because there wouldn't be any worries about license/ownership instability.
However, before we go nuts with Postgres love, I think it's safe to say Sun won't be close sourcing MySQL to a damaging degree; that'd be like killing the goose that lays the golden egg.
The reason MySQL is so valuable is because of its wide usage, and they'll want to use that to their advantage in more subtle ways than close sourcing and cashing in. The comments so far have been a bit OTT.
Re: (Score:3, Informative)
Re:This is great news.... (Score:5, Interesting)
You need to get a grip and possibly read for yourself what this is.
Sun is saying that they may (not yet decided) offer some add on components to mySQL backup that may (not yet decided) use a license other than GPL. The add on in question will be integrated through a backup API mySQL has for exactly this purpose (to enable 3rd party extended backup solutions).
What exactly do see wrong with that? First, nothing precludes building open source backup solutions for this API and nothing precludes other 3rd parties from building other solutions. Why should Sun not have the same right?
]{
Re: (Score:3, Informative)
I've been using PostgreSQL pretty heavily for the last year or so, and since the version of Gentoo I was originally using had 8.0.12 as the default version, and I am now using 8.2.6, I can say that it has improved tremendously just through those two minor releases. I have also not found the documentation to be significantly lacking. It is well organized and covers everything you need for even a fairly heavily used system.
I haven't tried doing any of the more esoteric things with it that the documentatio
Re:This is great news.... (Score:4, Informative)
MySql is a full fledged client/server database and *should* support referential integrity properly. Of course its biggest problem is licensing - you can only use mysql with 100% GPL applications (unless you're prepared to pay $200/user for the client licenses, or stick to the 3.23 client which is the last free to use version), which limits it somewhat.. TBH given that restriction I'm really surprised web hosts still ship it, as they're opening themselves up to all sorts of liability issues if one of their customers uses/builds a non-gpl app using it.
Postgresql is basically mysql without all the silly politics.
Re: (Score:2)
Re:This is great news.... (Score:5, Funny)
Re: (Score:3, Funny)
A. One has a punning clan...
wait a minute.... (Score:5, Interesting)
Re:wait a minute.... (Score:5, Insightful)
Sun wants to treat MySQL like a product. They want to give away the "free" version as a stripped down marketing tool. They want to put new code in Enterprise first, where fewer people will see it. The current model is that Enterprise is MORE stable and less agressive. The value of the GPL version is that lots of people put up with warts because it's free... paying customers won't do that by a long shot. The first time a nasty data killing bug shows up for the top paying customers they'll all jump ship for Sun not testing better.
I've run into this with Oracle (Score:5, Interesting)
Yes, this is what Oracle does with Berkeley DB. On one project, we started out with using Berkeley DB. It wasn't meeting the needs, so we started looking at other options. Oracle had us hooked, and started reeling us in. Up until we got to the price tag. They wouldn't offer the support that we needed for their commercial version of Berkely DB, and instead wanted to push us towards their full Oracle DB. It sounded fine until we got to the price. They wanted, get this, 5% of the gross revenues of the product we were designing!!! Not a per-license fee, not a large finite sum for the product, but a full 5% of the revenues.
Needless to say, we told them to take a hike.
This is different than from a few years ago. Then they were willing to do a per license fee. But, of course, at an astronomical amount. Plus, this amount would literally change each time we talked to a different salesperson. There was a lot of confusion at the time. Now they've eliminated the confusion, but their greed knows no bounds.
Sun is welcome in this space, IMHO. More competition is good, because frankly, all of the vendors have serious drawbacks in one way or another.
The moral of the story is be real careful about the database you select, and your design. If you choose foolishly, you'll end up spending lots of money, when a better design could have saved you from this pain.
Re:Very insightful (Score:4, Informative)
There are companies that use the 'closed first, GPL later' approach: Xensource did with Xen virtualization softwre, and Citrix is allegedly doing the same now that they bought Xen. AFPL does this with Ghostscript, and at last look Zmanda was doing this with Amanda.
Re:This is great news.... (Score:4, Interesting)
Re:This is great news.... (Score:5, Funny)
We even still get a pronounceable acronym LAPP. It looks like the future is still rosy for the rest of us.
Re:This is great news.... (Score:5, Funny)
Sometimes I get tired of that, and use NetBSD for a while. A short stint with NetBSD, Apache, Postgresql, and PHP usually refreshes me long enough so that I can FreeBSD, Apache, Postgresql, and PHP again.
Re:This is great news.... (Score:5, Funny)
Re:This is great news.... (Score:5, Insightful)
Would you like another round of ammo with that foot gun Sun?
Best of all, PostgreSQL's source code is available under the most liberal open source license: the BSD license. This license gives you the freedom to use, modify and distribute PostgreSQL in any form you like, open or closed source. Any modifications, enhancements, or changes you make are yours to do with as you please. As such, PostgreSQL is not only a powerful database system capable of running the enterprise, it is a development platform upon which to develop in-house, web, or commercial software products that require a capable RDBMS.
That seems to be the same thing Sun is saying - we're going to add some closed source features to MySQL; the same as pSQL's license allows.
Re: (Score:3, Insightful)
I don't mind some proprietary software, but open source software which suddenly turns proprietary is
downright uncool. No MySQL on my dinky little servers; PG all the way.
Re: (Score:3, Interesting)
I sort of seen MySQL as only being partly finished and more like an open source version of SyBase but without stored procedures and triggers, etc, unless they recently added them and I didn't know it. MySQL was usually good enough for most small projects and web s
Re:This is great news.... (Score:4, Informative)
I've never understood the reluctance towards PostgreSQL. It's been quite good for quite a long time now.
Re: (Score:3, Insightful)
Re: (Score:3, Insightful)
Re:This is great news.... (Score:5, Informative)
http://phppgadmin.sourceforge.net/ [sourceforge.net]
Re: (Score:3, Informative)
Re: (Score:3, Insightful)
Re: (Score:3, Insightful)
confirms the fact that mySQL isn't some place to keep your data if
you are serious about protecting it. Backing your database without
causing a total outtage is not a "minor or peripheral" feature.
Neither is the ability to recover all transactions that have occured
between your last backup and the point of your "disaster".
Sun is intentionally hamstringing the libre version of mySQL with this
sort of shenanigan.
It's time to fork.
harsh judgement (Score:5, Insightful)
given the size and nature of this move, I don't begrudge sun anything in its commitment to open source.
Re:harsh judgement (Score:5, Funny)
Re:harsh judgement (Score:5, Insightful)
Re:harsh judgement (Score:5, Insightful)
I do like NetBeans.
Re:harsh judgement (Score:5, Interesting)
Where have you been? Java source code has been available for a long time but after years of people complaining that it wasn't "free enough", Sun fully released Java under a GPL [slashdot.org] 2 years ago.
OpenOffice not really GPLO.K. so it's LGPL [openoffice.org] So what, so is Gtk, most of GNOME and probably 80% of what you and joe-sixpack considers to be "opensource" in "Linux". GPL is just one license. GPL was never fully tested in court and doesn't provide patent indemnity as CDDL does. I'd be happier if Java, OpenOffice and MySQL were CDDL but there would be too much gnashing of teeth from the Linux creationists.
OpenSolaris i dont know enough aboutOpenSolaris is licensed under CDDL. Look here [opensolaris.org] for an FAQ which explains in simple terms why CDDL is superior to GPL.
Re:harsh judgement (Score:4, Insightful)
Last part a Joke? (Score:5, Informative)
Java - I am running the IcedTea free software version right now
OpenSolaris - might not be GPL, but it still qualifies as free software... right?
Of course I'm hoping the first part is a joke too.
Re: (Score:3, Insightful)
No, Anonymous just has an axe to grind. MySQL is releasing some stuff in the for-pay codebase first. And I note a commentator below says the backup is in the GPL codebase after all...
--dave
Re:Last part a Joke? (Score:5, Insightful)
Slashdot's credibility is drowning.
Re: (Score:3, Insightful)
I don't remember him wording it quite that way, though. :-P
Comment (Score:5, Informative)
-1, Flamebait (Score:5, Insightful)
Sun has had a very poor history of actually open sourcing anything.
That's rubbish. The article claiming OpenSolaris isn't really open source bases it on the lack of community and ideology. I'm sorry, but if you want ideology, then it's Free Software you're after, not open source.
OpenSolaris is definitely open source, and Sun don't have a poor history of open sourcing things. Anybody who says otherwise has an axe to grind.
Re:-1, Flamebait NOT: Prod Solaris is NOT opensour (Score:5, Insightful)
What the hell? (Score:5, Informative)
Those guys are such dicks, they never give the community anything.
Re:What the hell? (Score:4, Insightful)
But hey, it's always good to have some real competition there. At least that way Sun is forced to actually add major new features to Java at a reasonable pace.
Sun to Begin Close Sourcing MySQL (Score:5, Funny)
They can do it to TheirSQL, but not MySQL...
Re: (Score:3, Informative)
No. That's the key difference between the GPL and permissive licenses like BSD and MIT. You cannot take GPL code, modify it, and re-release it as a closed source product. The terms of the license explicitly state that you must provide source code with any modified or derived version you distribute.
*UNLESS* you are the sole copyright holder to the GPLed work and any outside contributors have assigned copyright to you, in which case you can re-release it under whatever license you please (of course, the
Comments from MySQL (Score:5, Informative)
* The business decision on this was made by MySQL AB (by me as the then CEO) prior to the acquisition by Sun, so this has nothing to do with Sun. On the contrary, Sun is more likely to influence this decision the other way.
* It is not a quesiton of close sourcing any existing code, nor anything in the core server. Everything we have released under GPL continues to be under GPL, and the core server will always be under GPL (or some other FOSS licence).
* We will introduce backup functionality for all users (Community and Enterprise) under GPL in version 6.0.
* Additionally we will develop high-end add-ons (such as encryption, native storage engine-specific drivers) that we will deliver to customers in the MySQL Enterprise product only. We have not yet decided under what licence we will release those add-ons (GPL, some other FOSS licence, and/or commercial).
* At all times, because the main backup functionality goes into the core server under GPL, anyone can of course use the api and build their own add-ons or other modifications.
Those are the facts on this. The interesting topic is of course the one of the business model and what the best business model for FOSS software is. I hope to cover that in a separate posting.
In all of this, you have our undivided continued commitment to providing a fantastic and complete MySQL server under GPL for anyone to download and use. If we for whatever reason would not do that, we would risk losing users to other open source databases or risk seeing a fork of our own product. This is the power of open source.
Make sense?
Marten
previously CEO of MySQL, now SVP at Sun
Re: (Score:3, Insightful)
Thanks for posting and clarifying.
That seems to be basically what the article says too. I wonder if Slashdot editors actually read stories before posting them with flamebait summaries?
Re:Comments from MySQL (Score:5, Insightful)
Re:Comments from MySQL (Score:5, Insightful)
I didn't actually read any of the points - the mere fact that he posted a comment on slashdot proves that Sun is committed to open source.
When was last time Bill Gates posted a reply on slashdot?
Re:Comments from MySQL (Score:5, Funny)
Re: (Score:3, Insightful)
MySQL has made controversial decisions in the past (such as the SCO deal), but you have always been very straightforward with the open source community about the rationale behind the decisions, and taken the time to address their concerns. Most important, you have always kept your word regarding your commitment to the open source community.
There are many situations where special extensions are needed by a small or select subset of the general user base (a niche, per se),
Re:Comments from MySQL (Score:5, Interesting)
But we are not absolutely certain that this is the case, and so we are experimenting with other models. We believe that a DBMS behaves somewhat differently in the market compared to an operating system. We believe that Red Hat's competitive situation is different from ours. And we are not fully convinced that Red Hat gets a fair compensation in the market for their enormous (and great) investments and contributions.
So for these reasons we continue to test out new models.
Marten
Re: (Score:3, Interesting)
I believe that customers using operating systems will mostly want the latest updates and patches, so on-going support (or subscription) is vital to the the well-being of the installation. But with databases, customers typically want to avoid updates unless they absolutely need them. For this reason I believe that selling a support program (only) to database customers may not be as good a business as doing it to operating system customers.
Anoth
MySQL & FOSS (Score:5, Insightful)
I tried to clarify the facts in another posting a moment ago: http://developers.slashdot.org/comments.pl?sid=525246&cid=23098626
Here I will discuss the business model considerations, MySQL's commitment to Free and Open Source Software (FOSS), and why we made the decision we made.
First and foremost: we at MySQL firmly believe that open source is a superior way of producing software. You get better quality faster, and you often get better innovation too.
So it is not lightly that we have decided a few times to produce non-open software, such as the MySQL Monitor introduced some years ago. So why do we do that?
The reason is that we have an ambition not only to produce FOSS code, but also to be a profitable business that can exist for a long time. Each time we make more money, we hire more developers to develop GPL code.
If the world were perfect, we would only produce GPL code and we would have a great business that cna fund the software development. But we have found that the world is not perfect. We have been experimenting with a variety of business models around FOSS (dual licensing, support only, simple subscriptions, different binaries for community and enterprise, non-open source features) to find the best one. And we will continue to experiment until we are satisfied. We need to find a model that allows us to produce a ton of great code under GPL while having the financial strength to do all this.
To get to this goal of ours, we believe we have to be more pragmatic than dogmatic. Call it a necessary evil if you like. Having production add-ons that we provide only to paying customers currently seems to use to be a useful model. Our partners and customers think it is great. Many users think it is great. But not all do (as evident from this thread on
In all of this - i.e. as we experiment with open source business models (as there aren't really any role models bigger than ourselves that we could learn from) - we remain fully committed to producing the core database server always under the GPL (or some other approved FOSS licence).
In this work, we feel we have been able to produce enormous benefits to the world in the form of GPL software. The MySQL server could not have evolved as much as it did (not that I am saying it has evolved perfectly) if we hadn't had a revenue stream to fund the hiring of developers and others. We have open sourced MySQL Cluster which was an advanced closed-source database engine at Ericsson. We open sourced the Falcon storage engine.
I can appreciate that many of you are upset with our decisions. It has happened before that the community has been upset with us. But I hope that you can see that
* we are trying to be fully open and transparent with our decision-making in these areas
* we have a full commitment to produce the core MySQL server under GPL
* we are actively listening to your input
We can probably not please all, but you should know that we are trying to serve our community. We are immensely thankful for all the support and contributions that we have received in our 13-year history. We are hoping that we are good stewards of the MySQL phenomenon, and we hope that you can come to terms with the fact that we find revenue generation a vital part of our mission.
We may not have come up with the perfect business model yet (and perhaps the decision that is here being debated was utterly stupid), but we are determined to continue to seek the perfect business model for open source software so that we can continue to exist and be strong, and so that other software entrepreneurs can learn from our successes and mistakes.
Finally, please note that this entire decision and reasoning is something we developed on our own at MySQL AB several months ago, before being acquired by Sun. Sun has not asked us to do this or that. Or in fact, Sun has asked us the opposite - i.e. whether we should not
Re:MySQL & FOSS (Score:5, Interesting)
What the community doesn't seem to get is that this is basically creating two versions of the same product. One open sourced and one closed source. It is basically forking off a closed source version and paying off developers to release it so they are finally paid for their hard work and years dedicated to writing code. Just that the open source version now doesn't have the same code and features as the new closed source version has. But that wouldn't stop open source developers from writing new code to put features back in the open source version. As long as it doesn't use source code from the closed source fork of it. For example this was done to WINE to create Crossover Office, WINEX/Cediga, et all. Also Red Hat Enterprise is different from Red Hat Fedora. Just that one version went commercial and the other went open source.
As an open source developer you actually want this to happen, so that all of your hard work is paid off finally. You want a company to buy out your work and pay you for it eventually. That doesn't make you selfish and it doesn't make you greedy either. I mean you spend years supporting the open source community for free and writing a lot of code without even being paid for it. So they really can't say you haven't given anything to the open source community. While people jokingly call open source developers as communists or hippies, in reality they are capitalists at heart. In the end they want equal pay for equal work. Open source projects are a good way to market their skills and show off their coding abilities and ability to work in a team. Plus it gives back to the community in free software. But the time will come eventually when some company decides the project is good enough to license and use in a commercial project so they sell their rights to it for money. Most of the time that doesn't happen and it continues to be unsupported and open source developers have friends and family members wondering if they are insane, doing all of that hard work for free and it looks like they are throwing away money or flushing it down the toilet.
There will still be an open source version of MySQL, just that parts of it got spun off into a closed source commercial version. I did a lot of research into open source business plans myself in college. You try to earn money via charging for tech support or donations, failing that you try to get some company like Sun to buy your code and pay off your developers to release the code from open source. But some open source companies sell t-shirts and stuffed animals and other stuff. Any way you look at it, it is still capitalism and still a company trying to earn a profit. You still have stock holders who want a return on their investments. You still have employees that expect a paycheck. It may be free software, but people aren't really writing it for free, they expect a payoff sooner or later.
Is anyone actually reading TFA? (Score:5, Insightful)
Talk about someone trying to be misleading...
mrghemp (Score:5, Insightful)
MySQL is one of the most popular open source products out there, but they get lambasted if they create an add-on and want to actually get paid for it. Too many ppl react as if they are defecating on a holy shrine in the land of FOSS.
The title of this article and some of the reactions here strikes me a chicken little "the sky is falling" BS. I love open source software and the general movement, but I hate it when people jump to conclusions like this... and jumping to conclusions like this seems to happen all to often by ppl on
I can't help but wonder how many of the people, who treat this story like the evil Sun is going ruin MySQL, run MySQL but haven't open sourced the programs that they've written that access the database... I'd bet a hell of a lot of closed source programs use MySQL as their database... should we scream at them for being evil too?
Who Needs MySQL? (Score:3, Informative)
The summary is bad... (Score:5, Insightful)
I went to firehose to vote this story down with the reason "not the best". I suggest we all start doing this for all such examples of yellow journalism. Maybe if we do it enough, the editors will start to get a clue.
Let's kill MySQL so PostgreSQL can take over! (Score:3, Insightful)
MySQL has been drifting towards closed source for (Score:3, Insightful)
Geez Louise (Score:3, Insightful)
don't rush to conclusions (Score:4, Informative)
Not to mention that SUN is not the only one doing interesting things with MySQL
Also, the features in MySQL Enterprise can (at least currently) be enjoyed by most developers using alternatives
1) the hot backup of myisam tables will be available in the open-source version
2) the smart load balancer is a MySQL Proxy configured with filtering scripts that you can write yourself in Lua
3) profiling can be done efficiently with Sun's DTrace
Disclaimer: I am currently attending the MySQL conference, but I am not affiliated with Sun in any way.
Bad summary (Score:5, Informative)
Suns contribution to open source (Score:4, Interesting)
Get back in your hole Troll. According to the EU Sun is the No 1 contributor of code towards open source by a very, very wide margin.
Re:Not that I begrudge them a right to make a buck (Score:5, Informative)
Re: (Score:3, Insightful)
well, yes but, we wanna have all that new features OPEN too.. imagine RedHat tomorrow saying, "yo guys, RH engineers gonna add new advanced features closed source.."
this is not good, not good at al...
EVERY commercial Linux distribution has parts which may or may not be open source, but if they are open they're certainly open to the extent that the GPL is.
Ubuntu has Landscape, a tool for managing a number of Ubuntu desktops. Only available if you're paying Canonical for support.
SuSE plugs into ZenWorks - most certainly not F/OSS.
RHEL has Fedora Directory Server (albeit rebranded as Red Hat). That one's open source but such an absolute dog to set up that you'd need your head examined if you tried doin
Re:Not that I begrudge them a right to make a buck (Score:5, Insightful)
Re: (Score:3, Interesting)
Re: (Score:3, Insightful)
This is more like the adult teaching a kid about sharing by playing with a toy with the child. Eventually, the kid's gonna snatch it off the adult, clutch it to his chest possessively and and yell "MINE!"
I solved that with my 3 YO daughter by taking the batteries out of her toy and telling her that the toy is hers, but the batteries were mine. When she realised that the toy didn't work without the batteries, she understood the meaning of
Re:You can't effectively close-source anything GPL (Score:2, Insightful)
Can you say... (Score:3, Funny)
Re:You can't effectively close-source anything GPL (Score:4, Informative)
No comment regarding XFree86/Xorg.
No comment regarding the Emacs/XEmacs fork, except to point out that there was an earlier fork called Epoch made in the version 18 days and that didn't go anywhere. I used it for a time in 1990 and preferred it to straight Emacs 18.
The only other major fork I can think of would be the *BSD forks, Open, Net and Free.
Successful forking is very rare and requires a truly dedicated developer community or large corporate backing to pull it off. Out of the few examples listed one of them was not a fork at all, but a coup and resulted in the death of the parent.
Beryl (Score:3, Interesting)
Re: (Score:3, Interesting)
The only thing that Sun will achieve in this change is a fork... Maybe that was the plan all along... The founders of MySQL AB get their big checks, and then create a new company with a forked version of MYSQL.. Brilliant!!!
They are forking the code (Score:5, Informative)
Re: (Score:3, Insightful)
Re: (Score:3, Interesting)