Sun Spokesman Says "We Screwed Up On Open Source"
An anonymous reader sends along a video from Builder AU, in which Sun's chief open source officer Simon Phipps describes 2001-2002 as 'a period where Sun 'screwed up' in their dealings with the open source community. Phipps says that Sun is trying to remedy the situation with the open sourcing of Java, Solaris, and the rest of Sun's software."
Oh, I'd say 2008 is shaping up quite nicely to be one of the worst years in their history. The huge revenue miss in Q3, combined with the total lack of organic revenue growth, the continued exodus of top execs, and the pending layoff of up to 3000 employees doesn't exactly bode well for the future of Sun.
Ponytail-guy and his pals have basically given away the crown jewels and have not been able to "monetize" any sort of decent return for their efforts. The company can't sell servers, gives away software, and keeps purging the budget of the services and marketing teams that are the only pathway left for revenue growth. Geniuses.
I love Sun, I love their software, and they even have some really impressive hardware, but the management team there is absolutely clueless about how or where to take the company. The bets they made on open source and other areas are clearly not paying off. The stock is as low as it has ever been over the past 8 years and is showing no signs of life.
It is utterly depressing to see such a great company go down like this.
you might be asking the wrong company there - as far as i recall, the main jython developer also wrote ironpython, and now works for microsoft who seem to not really take python seriously as its a bit of a bolt-on hack and not nicely integrated into visual studio like c++ etc; they're not exactly the kings of opensource either....
plus, even though the jython library version is out-of-date, it still makes c-python look like a snail - and i never thought i'd say that java is faster than c!
hopefully python3000 will bring us speed if not compatibility.
#include <sig.h>
IcedTea is based on OpenJDK, released by Sun.
Try out fish, the friendly interactive shell.
I think anyone who has attempted to legally link proprietary drivers, video codecs with the Linux kernel would understand some of GPL's limitations. The fact that GPL can take from so many licenses (without necessarily exporting) doesn't automagically make it the best license.
CDDL is based on MPL which has an explicit patent protection clause (bring a patent suit against another CDDL licensee and you lose all CDDL rights)
The fact that (besides Java), Sun hasn't released much GPL code should not cause us to ignore significant contributions by Sun to the opensource community. According to a E.U. study on The economic impacts of free and opensource software, Sun contributed 312 million Euro's worth of FOSS which amounts to over 51000 person months. This was 44% of all corporate contributions to FOSS. The next highest contributor was IBM with 13% then Red Hat with 8%. The rest SuSE, Netscape, AT&T... don't even add up to Sun's contribution. And this study came out before Java was GPL'd.
They open sourced their compiler, virtual machine and most of their libraries before IcedTea was started according to wikipedia. And how would you say they can be coerced? It's not like their entire revenue is based off open-source, so I don't see any distinct advantage open-sourcing would give Sun
The GP was asking for ZFS to be released under the GPL. It already is open-sourced, just under the CDDL which is, unfortunately, incompatible with the de-facto standard copyleft license, the GPL.
So, er, what file system is Sun selling then? ;)
You are not alone. This is not normal. None of this is normal.
ZFS is Open Source and has been since November 2005.
Do you even lift?
These aren't the 'roids you're looking for.
The numbers in that study seem to be *way off* reality. Really, RH and only 400kloc? I suggest you look at the OSDL study or any of the recent "Who wrote linux 2.6.x" statistics on LWN for more realistic numbers.
Reading this story seem to indicate that 2003 and forward should have been part of the "screw up" period.
It is good to see Sun throw their weight in to support open source.
Carbon based humanoid in training.
Bell labs is still kicking under Alcatel-Lucent, so its more like sun just resembles Bell Labs.
http://en.opensuse.org/Novell_Supported_Projects for a list
Don't fight for your country, if your country does not fight for you.
The CDDL is like LGPL but on a per-file basis. Any changes made to a CDDL file will remain CDDL, but any other files or code is not affected. It's 100% usable by FreeBSD or Apple.
Do you even lift?
These aren't the 'roids you're looking for.
Not really sure what you mean here. I was rather surprised when I decided to do some Solaris development that the primary focus has moved from Solaris/SPARC to Solaris/x86. Half the cool stuff in OpenSolaris is designed around the x86 platform.
Similarly, the primary focus of the Java codebase is the x86 platform first, remaining platforms later.
Sun is also a massive seller of AMD64 and Intel Xeon based servers and workstations. Amazingly, Sun's prices have even come out of the stratosphere and are extremely competitive with other manufacturers like Dell.
Sun is even working to virtualize these "commodity platforms" with their surprisingly good OpenxVM project. I actually passed on a free copy of Parallels because Sun's VirtualBox was working so well for me.
I know Sun has the stigma of selling only overpriced iron, but the truth is that they're fairly well in tune with their customers and are working hard to provide them with the products and services they need. Along the way, the Open Source community is benefiting greatly.
Javascript + Nintendo DSi = DSiCade
Sun is still Evil (capital E):
"The simple fact is, I gather from Jones' testimony, Sun could have prevented the harm SCO sought to cause by simply telling us what rights it had negotiated and received from SCO prior to SCO launching its assault on Linux. Yet it remained silent. When I consider all folks were put through, all the unnecessary litigation, and all the fear and the threats and the harmful smears, including of me at the hands of SCO and all the dark little helper dwarves in SCO's workshop, I feel an intense indignation like a tsunami toward Sun for remaining silent."
Pamela Jones, Groklaw.net (Linky.)
Sun is Evil. Google is Evil. Microsoft is Evil, but getting tired and slow.
I got Jython working on my new machine, and it's considerably better. Like, almost on par with CPython - modulo the fact that it's still quite behind feature-wise. It might be the JVM (1.5 before vs 1.6 now) helping. Also, IronPython has gotten worse at generators between Alpha6 and Beta2 somehow.
Test machine is 2GHz Core 2 Duo iMac with 4GB SDRAM running MacOS 10.5.3.
awatts@platypus:~$ python2.5 timerseqs.py
2.5.1 (r251:54863, Jan 17 2008, 19:35:17)
[GCC 4.0.1 (Apple Inc. build 5465)]
forStatement => 4.59940099716
listComprehension => 2.38550591469
mapFunction => 1.92037510872
generatorExpression => 3.14438390732
awatts@platypus:/Applications/IronPython-2.0B2$ mono ipy.exe ~/timerseqs.py .NET 2.0.50727.42)
2.5.0 (IronPython 2.0 Beta (2.0.0.2000) on
forStatement => 9.48001098633
listComprehension => 6.89910125732
mapFunction => 5.57528686523
generatorExpression => 19.7973022461
Note: Jython doesn't support generator comprehensions ./jython ~/timerseqs.py
(With Java 1.6.0)
awatts@platypus:~/jython2.2.1$
2.2.1
forStatement => 6.0929999351501465
listComprehension => 3.7769999504089355
mapFunction => 1.6570000648498535
No, here is why GPL was not chosen:
The other reason for the creation of the CDDL has to do with software patents:
The reasons that the GPL is incompatible with the CDDL are very complicated and nuanced but in large part have to do with the patent clauses. It is clear why a company such as Sun needs such clauses. So if it were not for the stupidity of the existence of software patents a CDDL-like license could have been created that would have been compatible with the GPL minus some other niggles. Because of the existence of software patents and the need for such clauses the CDDL is incompatible with the GPL. It is too bad about the GPL being so restrictive about adding clauses that protect the copyright holders.
Really the spirit should have been that if CDDL source is used in another project that this project needs to be open, but then all sorts of real world complications get in the way. That is basically the spirit of the GPL as well. Sun was against anything BSD-like where another company could take their source and create a closed source product.
If the Novel/MS deal was strictly between the two of them, i would have migrated from Suse and left it at that. However, Novells covenant with MS potentially gives MS ammunition against the rest of the 'linux community' (whether it be FUD or if they make good with their IP threats). That's what i have an issue with. The deal exposes the rest of us, non-Novell linux users
tomorrow who's gonna fuss
Google is hard... let's go shopping!
I thought that Sun paid a lot of money for StarOffice, and then Sun open sourced it.
Isn't this right?
Installing MPlayer under 11 (10.3 will also work if you look it up) is done with one click install: http://api.opensuse-community.org/searchservice//YMPs/openSUSE_110/e208863ffe1f342b2a9eed35603427dcac9fa27c
http://en.opensuse.org/One_Click_Install for more info
They have bought SuSE and have opend up not only YaST but the whole process. You can even make your own openSUSE based distribution where they activaly helped solving on how to do this in several ways.
They are working on how to open source other things as well. However that is not as easy as they would like.
The fact that they have gotten a lot of money from MS so that MS can give away SUSE is realy nice and except for all the emotional reactions to it, I am still waiting for the negative things that were going to happen what people were promising. Instead I see no change, except the fact that Novell got a bunch of dollars for SLES licences.
And being closed to FOSS is something I disagree with if you compare it to Novell. Novell is not closer to FOSS. They are standing in it and are part off it.
Perhaps it was true for Novell a few years ago. It certainly isn't at this moment.
Don't fight for your country, if your country does not fight for you.