Slashdot Mirror


Native Java JDK 1.3.1 Support For FreeBSD

ap writes "Justin T. Gibbs, of the FreeBSD Foundation, announced today the availability of a native binary release of the Java JDK 1.3.1 for FreeBSD. He also mentioned that more attention will now be focused on providing a release of the 1.4.x JDK. Such developments should allow for FreeBSD to be better suited for enterprise uses."

10 of 231 comments (clear)

  1. Here's that BSD babe post by rgm3 · · Score: 4, Informative

    For those of you wondering wtf he's talking about, a cute chick in red plastic dressed as the BSD devil got lauded at some convention somewhere.

    Here's the link to the post, lots of pictures.

  2. Re:Stupid Question by moderators_are_w*nke · · Score: 5, Informative

    FreeBSD (actually, AFAIK, all the BSDs) have had native Java for ages as part of the ports system, but because of Sun's licencing, you had to compile it yourself, which can take some time. A binary release just makes it easier for some users to run native Java.

    FreeBSD (and probable other BSDs) can also run an emulated Linux Java virtual machine.

    Mark

    --
    "XML is like violence. If it doesn't solve your problem, use more." - Anonymous Coward
  3. Re:who cares by worm+eater · · Score: 5, Informative

    Does anyone run this OS?

    Yes. Yahoo! uses FreeBSD for all of its shared hosting. Other hosting businesses such as Verio, Infospace and Datasync also have very large deployments of FreeBSD (each of the hosts I named have over 100,000 active sites running on FreeBSD).

    The information in this post came from here.

    --
    Maybe partying will help...
  4. Re:1.3.1?? by __past__ · · Score: 4, Informative
    Is there something more difficult about running Java on BSD than on another OS like Linux?
    Yes, there is. BSD isn't hyped, and Sun doesn't sell computers with BSD preinstalled. That means that it isn't part of their definition of "everywhere" (as in "write once, run everywhere"), and they won't do more than they absolutely have to to support it.

    Oh, you meant technical reasons? Java works fine on BSD, and has for a long time. We are talking about licensing issues here.

  5. Nvidia lists FreeBSD support by Gherald · · Score: 4, Informative

    Somewhat OT, but it really impressed me today when I went to the Nvidia site and clicked "Download Drivers" --> "Graphics Driver" --> "Geforce and TNT"

    And saw listed for choices:

    Windows XP / 2000
    Windows NT4
    Windows 95 / 98 / ME
    Linux IA32
    Linux AMD64
    Linux IA64
    FreeBSD

    I don't know whether Nvidia's support is new (it probably isn't) but this is the first time I noticed it listed.

    I was like: "Wow, people actually use this OS enough that a major graphics company provides drivers on their main download page."

    Sorry if this isn't news, I just thought it was cool.

  6. Bad examples. by markv242 · · Score: 5, Informative

    (Every time I post this sort of message, I get +5. I hate karma whoring like this, but once again it's time for some education.) "Amazon is hiring Perl programmers" leads the reader to believe that Amazon is running Perl in some major shape or form. They aren't. They are running Java servlets under... Weblogic, I believe. "Slashdot...runs on Perl." leads the reader to believe that Slashdot is a complicated website. It isn't. Incidentally, have you clicked on the "Friends" tab on your user page lately? What an incredibly slow response (and that isn't a bandwidth issue). None of the technologies you listed (mod_perl, Python, PHP, etc) handle any type of failure well at all. Show me a PHP-based site, hosted on multiple machines, that provides load-balanced and automatic failover of in-memory session data. I'll give you a clue: you won't find one, because it is impossible to do shared memory over a cluster of machines in PHP, mod_perl, Python, etc etc. On the other hand, I can list off a whole slew of Java app servers that can do clustered, load-balanced, full-failover shared memory without even blinking. Resin is an awesome example of an extremely inexpensive application server that currently does nearly everything you need an app server to do. Want to know a little secret? The PHP team is moving more towards an application-server architecture, because they know that the native compiled-in mod to Apache/iPlanet/etc is kludgy. They're cooperating with Sun and others on JSF so PHP will be able to speak with Java applications in a more efficient way. mod_perl I won't even bother with. The MVC model simply won't work under mod_perl. Good luck with an implementation team of more than, say, 5 people.

    1. Re:Bad examples. by Dom2 · · Score: 4, Informative
      The MVC model simply won't work under mod_perl

      Hmmm, you must be smoking something good. Whilst there are some things you can't do under mod_perl (realtime perhaps), MVC is not one of them. In fact, you have an enourmous amount of choice when it comes to mod_perl and MVC - mason, Apache::Template, PageKit, AxKit and so on. There are many other tools to help you with MVC, or you can roll your own if you've sufficient hubris to think that none of the existing stuff does its job.

      Please try to research your rants a little better.

      -Dom

  7. Re:3 years later? by mi · · Score: 4, Informative

    The java/jdk13 port was added to FreeBSD on Aug 27, 2001 -- according to CVS.

    Now, _two_ years later, there is an _officially licensed_ binary package available. All "serious developers" could, and many did consider FreeBSD quite suitable for years... But it takes a lot of effort to get an official license to distribute the binaries. And not just the coding effort, which would be the FreeBSD people's idea of fun. It is mostly the legalese and paperwork kind of effort, which most sane people hate...

    --
    In Soviet Washington the swamp drains you.
  8. Re:1.3.1?? by MobyTurbo · · Score: 4, Informative
    That is an older version of the JVM which will be missing some classes that are being used by Java programmers. So much for being up to date.
    A native 1.4 sun jdk is in ports, I haven't tested it yet though. I assume that 1.4 in binary form will be forthcoming.
    BTW, why are they only now getting around to offering the Java SDK on BSD?
    FreeBSD has had a native Java 2 SDK for years, but they needed a Sun license in order to distribute binaries. Before you had to compile it in ports, which due to all of the point and click licenses Sun required you couldn't do in an automated fashion.
  9. Re:Native Threads Support? by Wastl · · Score: 4, Informative
    As far as I know you can have native threads with the JDK 1.3 port and above if you are running under FreeBSD 5.1. Here the message from the Makefile:

    "You must have a version of FreeBSD later than 4.7-STABLE February 2003 or 5-CURRENT February 2003 to use either native threads or HotSpot."

    However, native threads do not work for the Java plugin in Mozilla yet.

    Sebastian