Slashdot Mirror


FreeBSD 5.4 Review

gammelgul writes "Jem Matzan has written a review of the new FreeBSD 5.4 release on NewsForge. He writes about enhancements and the 64bit edition of the OS."

12 of 120 comments (clear)

  1. 5.4 Dedication by Anonymous Coward · · Score: 5, Informative

    The FreeBSD 5.4 Release is dedicated to the memory of Cameron Grant. Cameron was an active FreeBSD Developer and principal architect of the sound driver subsystem despite his physical handicap. His is a superb example of human spirit dominating over adversity. Cameron was an inspiration to those who met him; he will be fondly remembered and sorely missed.

    http://www.freebsd.org/releases/5.4R/announce.html

  2. Boring by debilo · · Score: 5, Informative

    This is a rather shallow review and has been discussed over at OSNews. Just read the comments and you'll finde you don't need to read the actual review.

    Someone mentioned a better review here. Enjoy!

    1. Re:Boring by Brandybuck · · Score: 4, Informative

      Is there a way we can turn off reviews coming from OSNews in our preferences? Please?

      I'm getting sick and tired of reviews that in no way reflect the experiences I have with the very same product. This guy has weird bleeding edge hardware, and then tells us it's not ready for me with my mainstream hardware. FreeBSD WORKS on with my CPU. FreeBSD WORKS with my NIC. FreeBSD WORKS with my harddrives.

      I don't expect operating systems to be perfect and support every piece of hardware ever built, but I do expect reviewers to base their evaluations on hardware that ordinary people out in the real world are using.

      --
      Don't blame me, I didn't vote for either of them!
  3. Re:DragonFlyBSD by random_culchie · · Score: 4, Informative

    Parent, Dragonfly is pretty unusable in its current state.
    Most of the entries in ports are broken and the team even insist it is only for development use.
    If it can sustain its initial growth it could be a BSD contender in some time. But not just yet!

  4. Review Formula by CableModemSniper · · Score: 5, Funny

    Here is the formula for the review of incemental updates to Unix-alike OSes.

    1) Describe the OS, being sure to mention its Unix origins. If the OS is not Linux-based, mention Linux.

    2) Comment on the weird piece of hardware by brand name in your box that made it crash

    3) List the new and improved features in the kernel and the daemons. (Note: security patches are feautures too)

    4) Base everything else on how easy it was to install.

    --
    Why not fork?
  5. 5.4 amd64 is seriously broken thread-wise by asserted · · Score: 4, Informative

    the box couldn't run Apache 2.0 (worker MPM) compiled with libpthread for a single day without a panic!
    at some point apache child starts boimbarding kernel with syscalls (500k syscalls/second), soon, if left unattended, the box panics.
    had to get back to i386 for stability.

    this is all on common hardware - Intel (EM64T) Xeons, Pro/1000 (em) network. and mind you, we still use SCHED_4BSD.

    conclusion? 5.x is by NO means -STABLE on amd64 yet.

    1. Re:5.4 amd64 is seriously broken thread-wise by Anonymous Coward · · Score: 4, Interesting

      I can tell you that I'm running FreeBSD-amd64 since 5.2 and it IS stable on this platform.

      Perhaps Apache 2.0 is not as clean as one might think? That's why I'm still using Apache 1.x.

  6. Re:This is my experience with FreeBSD by argent · · Score: 4, Insightful

    One employee lost a whole project due to the OS corrupting the filesystem. ... A few days later I was looking for another job

    So you were fired because you hadn't been making backups, right?

  7. Re:About time by Elf-friend · · Score: 4, Informative

    That might be funny, but only if it were true: amd64 support isn't new in 5.4.

  8. Complaints about stability have plagued 5.x by pschmied · · Score: 4, Interesting
    Speaking as a former FreeBSD user, I want this operating system to work again. I was disappointed to find that that didn't happen with 5.4-RELEASE. If you have FreeBSD 4.11 production machines and are thinking of upgrading, I suggest you leave them as they are for now.


    This is sad. I too remember fondly the 4.x days. FreeBSD hasn't made the transition to these "enterprise" features like the ULE scheduler, and getting out from under the "big lock" SMP.

    The 4.x series is still alive and well, but the writing is on the wall. If the FreeBSD 5.x series doesn't start fixing some of those show-stoppers, it risks becoming irrelevant.

    NetBSD and OpenBSD seem to have found their niche to a certain extent. I suspect that some network equipment vendor like HP will start putting OpenBSD in switches and routers. It seems like Cisco and IOS have the most to lose from OpenBSD gaining ground.

    NetBSD seems to chug away at its own pace making solid incremental gains. They tend toward evolutionary rather than revolutionary changes. When they do make more revolutionary changes, they tend to include them in small numbers, and only after a long period of vetting in the current branch.

    The laundry list of improvements to FreeBSD 5.x makes me wonder if that project didn't bite off more than it could chew. That the BSD faithful are starting to raise questions about the long road to stability with FreeBSD 5.x should be a warning to other Open Source projects to stick to regular release cycles with clearly defined and narrowly scoped improvements.

    I suspect that FreeBSD development may have slowed somewhat due to the "fun factor" waning. Announcing Big Gigantic Changes can be good to generate enthusiasm in a user base, but it can be oppressive to the poor developers caught doing the work. Lots of small, discrete tasks can be fun for experienced developers, and a good way to snag novices.

    Despite these problems, FreeBSD has very recently been a very vibrant project. They have traditionally had a level of coordination rarely seen in any other Open Source project. I think this can work, but FreeBSD 5.x may fall into the "lessons learned" category.

    Or, as I mention in my blog, Darwin may see a surge in popularity following Apple's Intel announcement.
    -Peter
  9. FreeBSD 5.4 64bit Support for Linux 32 Binaries by LogicX · · Score: 4, Informative
    I find the following comments from the article to be not accurate: I was disappointed to find that Linux binary compatibility was still 64-bit only for 64-bit FreeBSD. That means no 32-bit Linux binaries.
    Here's what you need to do:

    1. reference /usr/src/tools/lib32 which will tell you to:
      1. add "WITH_LIB32= yes #This makes buildworld compile lib32 linux code support" to /etc/make.conf
      2. buildworld/installworkd in /usr/src
    2. be sure the following options are in your kernel config:
      options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
      options COMPAT_IA32 # Compatible with i386 binaries
      options COMPAT_FREEBSD4 # Compatible with FreeBSD4
      options COMPAT_LINUX32 # Compatible with i386 linux binaries
      # Linux 32-bit ABI support
      options LINPROCFS # Cannot be a module yet.
    3. Recompile kernel, install kernel, reboot.
    4. Certain programs may require you add:
      linprocfs /usr/compat/linux/proc linprocfs rw 0 0
      to /etc/fstab
    --
    May this post be indexed by spiders, and archived for all to see as my Internet epitaph.
  10. Jem Matzan by essdodson · · Score: 4, Insightful

    Everyone pleae stop reading reviews done by this guy. They're uninformative, biased, and it's blatently obvious he's unwilling to actually learn FreeBSD beyond installing it two or three times each new release and writing a review catering to the already pre-established opinions of Linux users.

    --
    scott