7 Replies to “DragonFly 5.0.1 released”

  1. Has anyone found a good review of DragonflyBSD v5.0?

    I’d be interested in reading it.

  2. Upgrading is almost always the same procedure.

    If it’s the same main release:

    cd /usr/src
    git pull
    make buildkernel
    make buildworld
    make installkernel
    make installworld
    make upgrade
    reboot

    ( after reboot if all is well )

    cd /usr/src
    make rescue

    If moving to a new release:

    cd /usr/src
    git pull
    git checkout DragonFly_RELEASE_$MAJOR_$MINOR
    make buildkernel
    make buildworld
    make installkernel
    make installworld
    make upgrade
    reboot

    ( after reboot if all is well )

    cd /usr/src
    make rescue

  3. Actually it’s

    make buildworld
    make buildkernel
    make installkernel
    make installworld
    make upgrade
    reboot

    (note buildworld comes first)

  4. So has anyone found a thorough review of Dfly 5.0 for us noobs to read?

Comments are closed.