From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Thu, 14 Feb 2013 09:29:57 -0500 To: 9fans@9fans.net Message-ID: <267d4baa6305b9c719a1568551b105e8@coraid.com> In-Reply-To: <511CED19.5080700@mail.com> References: <511CED19.5080700@mail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] Atom upgrade Topicbox-Message-UUID: 176f1cb8-ead8-11e9-9d60-3106f5b1d025 On Thu Feb 14 08:58:03 EST 2013, adriano.verardo@mail.com wrote: > Hi, all. > > Is it possibile to upgrade the Atom distro likewise the Bell's one ? hi, not really. (working on it) right now, mkfs makes a pretty good substitute. it knows enough not to copy older files. the problem is not stepping not overwriting running programs. the straightforward way to do this is boot from cd and use mkfs to copy from the cd. you'll have to mount your fs by hand. the complicated way is to create a ramfs to hide the executables you're using and hopefully rio won't crash while you're doing this, but basically (just an example, i haven't debugged this) ramfs @{cd /bin; tar c .} | @{cd /tmp; tar x} # all of it; we have the memory path=(/tmp) # cd /tmp # not necessary; mkfs doesn't delete cdfs -d $mydev 9660srv -f /mnt/cd/d000 mount /srv/boot /n/boot # not sure if you want -p; -k is paranoia disk/mkfs -bkpvd /n/boot -s /n/d000 <{echo +} - erik