Slashdot Mirror


Sun's Linux Exec Departs

HyperbolicParabaloid writes "The NY Times (free reg blah blah) has an article about the departure of Sun's no.2 exec, but also mentions that Stephen DeWitt, the vice president of an important business unit that leads Sun's efforts with the Linux operating system, quietly left Sun on Friday, the company confirmed today."" And the question is: How will this affect projects like OpenOffice release and the on-again, off-again McNealy Linux relationship.

3 of 167 comments (clear)

  1. If Sun was smart... by Brian+Stretch · · Score: 5, Interesting

    ...they'd embrace the upcoming AMD Hammer architecture and build high-end Linux/Hammer workstations and entry- to mid-level servers around them. Kind of a Sun/Linux meets Apple deal: clean product line, not a lot of overlap, well designed, very cool. I say Linux rather than Solaris if only because it's impossible to do Solaris/x86 device drivers for everything, whereas Linux has a decent chance.

    Of course, that'd freak out their SPARC people, so they'll never do it. Pity.

  2. But they now have Whitfield Diffie! by abischof · · Score: 5, Interesting

    They may have lost their Linux Exec, but they recently acquired Whitfield Diffie! (For those not aware, Whitfield Diffie is one of the inventors of public-key cryptography, the technology used in PGP and elsewhere)

    --

    Alex Bischoff
    HTML/CSS coder for hire

  3. Solaris Developer Comments on Linux by __aanonl8035 · · Score: 5, Informative

    Also lm@neteng.engr.sgi.com (Larry McVoy) wrote:
    OK, I think I can handle this. Tell your friend that I used to work at SunSoft, in the kernel group, I did posix, ufs clustering, the sun source mgmt system, started 100baseT, architected the cluster product line (from which came vlans which I invented), etc. I think my credentials are probably enough to impress a sys admin :-) The main reasons that Linux is faster than commercial Unices:

    * the system call entry is a better design. All Unix systems other than Linux use the design done by Bell Labs 20 years ago and the Linux design is simply lighter - it approaches a procedure call in cost. The complaint is always that Linux can't possibly be supporting all the features, such as restartable system calls, if it is that fast. Those claims turn out to be false - Linux supports the same features, including security, as any commercial Unix. It's just designed better. And commercial Unices are starting to pick up the ideas.
    * Linux kernel hacks count instructions and cache misses and eliminate them. This is a biggy. When each "feature" is added into a kernel, people will do gross measurement to show that it made no difference. And each feature doesn't make a measurable difference - one or two more cache misses in a code path won't show up. But do that a 100 times and all the "features" taken together start to hurt. Linux is far ahead of the rest of the world, including NT, in that Linus and the other senior kernel folks do not kid themselves that a cache miss here and there doesn't matter. I frequently see the Linux development effort keep working at it until the feature they are working on can not go faster because it is running at hardware speeds - there is no more room for optimization. Contrast that with the commercial approach of "well, it didn't slow down for me" and you can start to see how things get out of hand. Kudos to Linus, David and Alan for being the smartest coders in this regard. I'd like to be that good.
    * Linux is a redesign. Many ideas have been rethought using current thinking. All other Unix implementations (exceptions are things like QNX - which also performs at Linux like speeds and has also been shown to be posix/xpg4 etc compliant) are basically the same under the covers. It isn't surprising that fresh minds can do better - one would hope that we have learned something in 20 years

    http://www.ultralinux.org/faq.html#q_1_15