Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Operating Systems Software BSD

DragonFly At DragonFly 1.0-CURRENT 108

CoolVibe writes "For months, the DragonflyBSD fork of FreeBSD was maintaining compatibility with the existing FreeBSD-STABLE branch by using the 'FreeBSD 4.8-STABLE' name internally. In a few commits, Matt Dillon changed all the names, and DragonFly is finally sailing under its own banner. Things that DragonFlyBSD already has that FreeBSD-STABLE doesn't are, among others, application checkpointing, variant symlinks (not unlike Domain OS), Light-weight kernel threads, a more efficient slab-allocator, a multithreaded network stack, and the rcNG system."
This discussion has been archived. No new comments can be posted.

DragonFly At DragonFly 1.0-CURRENT

Comments Filter:
  • I wonder (Score:2, Interesting)

    One has to wonder if DFBSD will die due to lack of following, or if it will be the next awesome BSD. I am currently running FreeBSD 4.8 Release on my workstation. It might be worth it to grab a spare machine and install it to see what's up. Only if the distributed.net client [distributed.net] will work on it though. ]:3}>

    • Re:I wonder (Score:5, Informative)

      by CoolVibe ( 11466 ) on Wednesday November 19, 2003 @12:24PM (#7511371) Journal
      It's already very good (and stable). Well allright, sometimes it breaks (that's development for ya), but wait a few hours, and the system is stabilized again (patches are backed out, or bugfixes get in). It's not like CURRENT, where you can hose your system beyond recognition if your not careful.

      Your Distributed.net client will Just Work Fine(tm). I'm still running that KDE 3.1.4 on my laptop that I compiled under 4.9-RCmumble, and that's still working quite spiffy.

      Dragonfly is almost a drop-in replacement. You can just pull it over your existing 4.x-STABLE box, and all your apps should work fine (except for kernel modules). Oh, if you have an NVIDIA gfx card, I ported the binary kernel module to DFBSD, and it's sitting smugly in the override ports. (read dfly's UPDATING about dfports)

      DragonFly as of current perfectly fills that niche where people want the latest and greatest, but don't want to run FreeBSD-CURRENT just yet. It's mostly production-safe. You can always revert back to your old FreeBSD-STABLE without much hassle.

      So, if you're really curious, just give it a go!

      • Sounds a bit unlikely to me..it might be stable now because relatively few major changes have occurred, but when you track a development version of an OS you will run into serious problems from time to time, especially as it diverges more from FreeBSD-STABLE.
        • You are right of course. Eventually it will be virtually impossible to do a clean switchover. But the DragonFly community is doing as much as they can to make the upgrade path as uneventful as possible.

          Even though it might not be possible in the future to 'upgrade' to DragonFly from a FreeBSD-STABLE machine, we'll try the hardest to keep the FreeBSD port system working until we have our package management sorted out. And boy, with the stuff that Matt has planned, that's going to be beautiful. Not the comp

    • Re:I wonder (Score:5, Interesting)

      by merdark ( 550117 ) on Wednesday November 19, 2003 @05:52PM (#7514550)
      I think this is one of the most promising new OS (or OS varient if you want to be picky). Personally, I can't wait for the package management system to get set up. Eventually, you will be able to run DBSD with binary only upgrades and installs. Should be cool.

      Ports are great, but damn does my p2 400 dislike hours and hours of compiling. :)
  • by Euphonious Coward ( 189818 ) on Wednesday November 19, 2003 @12:34PM (#7511456)
    Variant symlinks as found in Domain OS (nee Domainix, nee Apollo Aegis) are symlinks that refer to environment variables, e.g.
    ln -s '/etc-$(HOSTNAME)' /etc
    to help enable sharing the root file system. (I don't know the variable-reference syntax used in Dragonfly). This was one of the really cool things about Aegis, which was based on Multics, not Unix. Unix/Linux/BSD have still not caught up to the networking capabilities of Aegis, and what they do have is usually clunkier than the way it was done in Aegis.

    I thought about implementing variant symlinks on Linux. Probably it would need a new system call to tell the kernel where the process keeps its environment variables, to be run at each program startup, and a new process table entry field.

    • by Anonymous Coward
      Variant symlinks as found in Domain OS (nee Domainix, nee Apollo Aegis) are symlinks that refer to environment variables, e.g.
      ln -s '/etc-$(HOSTNAME)' /etc


      That's neat ... kinda. But any idea when we're likely to see plan9 namespaces hit any of the free *nix distributions? There's only so much you can do with environment variables after all.
    • by CoolVibe ( 11466 ) on Wednesday November 19, 2003 @02:03PM (#7512154) Journal
      Variant symlinks as found in Domain OS (nee Domainix, nee Apollo Aegis) are symlinks that refer to environment variables, e.g.
      ln -s '/etc-$(HOSTNAME)' /etc

      to help enable sharing the root file system. (I don't know the variable-reference syntax used in Dragonfly).

      It's exactly the same. The variables for symlinks can be set with the varsym(1) tool, and of course the vfs.varsym_enable sysctl has to be set to '1'. You can set symlink variables in global, user and process context.

      • I see, it doesn't depend on environment variables as such, but environment-variable-like definitions in another namespace entirely, already known to the kernel. That's probably for the best.

        Where is this documented? A google search suggests [gmane.org] that it uses "${var}" bracket notation, not "$(var)" notation as I had written.

        • by CoolVibe ( 11466 ) on Thursday November 20, 2003 @07:00AM (#7518523) Journal
          You are right of course. I don't use varsyms yet, but I had a look at the code [dragonflybsd.org] and that confirms what you said. Not much documentation yet, but the varsym tool has a manual page. It works like you expect. One sets a variable with varsym, and then you can use that variable (with ${} notation) in symlinks. Example:

          > cat > file-file1
          this is file 1
          ^D
          > cat > file-file2
          this is file 2
          ^D
          > ln -s 'file-${foo}' test
          > varsym foo=file1
          > cat test
          this is file 1
          > varsym foo=file2
          > cat test
          this is file 2

          Of course, varsym defaults to user context, which means that the var is only 'visible' to the user. With the -s flag, the var becomes system wide, and you can also restrict the view to the process.

          There isn't much more to it. It's easy, clean and simple :)

  • Hmm, well.. (Score:3, Insightful)

    by JVStalin ( 671988 ) on Wednesday November 19, 2003 @07:40PM (#7515583) Journal
    Things that DragonFlyBSD already has that FreeBSD-STABLE doesn't are, among others, application checkpointing, variant symlinks (not unlike Domain OS), Light-weight kernel threads, a more efficient slab-allocator, a multithreaded network stack, and the rcNG system." Oh, boy! Let's look at 5.1-RELEASE's features: rcNG, KSE, Mandatory Access Control framework, better SMP, fast ATA drivers. I hate to say it, but, DragonFlyBSD is all most as silly as that xMach project. :-) It's about arrogance, not software.
    • [snip DragonFly stuff list]... Oh, boy! Let's look at 5.1-RELEASE's features: rcNG, KSE, Mandatory Access Control framework, better SMP, fast ATA drivers. I hate to say it, but, DragonFlyBSD is all most as silly as that xMach project. :-) It's about arrogance, not software.

      It wouldn't surprise me if a good deal of the 'good' things will be ported back to FreeBSD. One of the things about the *BSDs is a lot of (code) sharing goes around.

      I'm kinda wondering what DragonFly-STABLE has that FreeBSD-STABLE d

      • I also have that feeling. (porting the best back to FreeBSD).

        It seems that there is one production BSD, FreeBSD, and the other ones are research projects, the best of which will be snatched later by the production free Unices FreeBSD and Linux

        - NetBSD : portability, cleanness
        - OpenBSD: Security, also a bit portability and cleanness, and a huge batch of stubbornness.
        - DragonFly: Mach kernel experiments.
        - Darwin: Also Mach kernel experiments.

        It's not that the above OSes don't have a merit for the user. Th
    • Re:Hmm, well.. (Score:1, Insightful)

      by Anonymous Coward
      Silly? Such a judgemental attitude seems much more silly than the fortitude it takes to accomplish what Matt has.

      I'm happy Matt has a place to try his ideas which have been shouted down time and time again by loudmouth, arrogant Dane and Australian developers (you know who you are).

      Dragonfly will either prove the latter to be the FUD frauds we suspect they are or to have been right all along.

      Stay tuned, you might just learn something. Then again, maybe not.
    • Re:Hmm, well.. (Score:2, Insightful)

      by Anonymous Coward
      You might want to take a look at the DragonFly design page. FreeBSD-CURRENT's SMP design is based
      on the traditional "lock everything down" model, which has scaling problems with current hardware trends. In addition, their particular implementation will be particularly hard to maintain in the long run. Really, the only thing you mention that is
      likely to be considered for incorporation in DragonFly is tht ATAng.

      You sound like one of the BSD developers who dislikes Matt on principle. So you may be right in yo
  • it seems very stable, and we all know matt dillon does good work ...

    i think the dragonfly theory of package management will really bring something new to the *BSD table and i plan on continuing my support for the project in the future

    personally, i think we need more *BSD forks ... as long as they are productive and (somewhat) original .. i say the more the merrier.
  • by acidtripp101 ( 627475 ) on Thursday November 20, 2003 @07:29PM (#7524305)
    The ONLY thing that was keeping me from using dfbsd was the fact that I had to
    a) install freebsd-stable
    b) cvsup the dfbsd sources
    c) recompile everthing
    d) then have my system

    Now that dfbsd has it's own ISO, I might have to find an old junk box somewhere to install it on (I actually like freebsd 4.x more than the 5.x series so far... MUCH faster, but I'm sure that'll change when it goes stable (no more debugging symbols, etc.)
  • MIDI support? (Score:3, Interesting)

    by thanjee ( 263266 ) on Friday November 21, 2003 @01:35AM (#7526242) Journal
    Doe DFBSD have *WORKING* Kernel MIDI support?

    The first BSD to have that will become my favourite. So far FreeBSD is in the lead :)

  • I spent last night looking at a spare machine that was given to me, trying to figure out what to put on it...

    I would say that DBSD would be as good a choice as any :o)
  • Server Names (Score:2, Offtopic)

    by devphaeton ( 695736 )
    Anyone have any trivia on why the servers that host the daily snapshots are named after an STD?

    * FTP: ftp://chlamydia.fs.ei.tum.de/pub/DragonFly
    * HTTP: http://chlamydia.fs.ei.tum.de/pub/DragonFly

    (on the bottom of http://www.dragonflybsd.org/Main/download.cgi)

    I mean, even in German, The Clap is The Clap, right?

E = MC ** 2 +- 3db

Working...