Subject: Re: updating, build and install order
To: William Allen Simpson <wsimpson@greendragon.com>
From: Frederick Bruckman <fredb@immanent.net>
List: current-users
Date: 06/20/2003 08:50:32
On Fri, 20 Jun 2003, William Allen Simpson wrote:

>   mv /netbsd /netbsd.old
>   mv ../obj/sys/arch/i386/compile/GENERIC/netbsd /

With that, there's a chance that an inopportune power failure could
render the system unbootable. Better (IMO):

    rm /netbsd.old
    ln /netbsd /netbsd.old
    sync; sync
    install -cpr ../obj/sys/arch/i386/compile/GENERIC/netbsd /
    sync; sync

Frederick