Subject: Re: how to install binaries?
To: Daniel Koo <danielh@uol.com.br>
From: Perry E. Metzger <perry@piermont.com>
List: tech-install
Date: 03/24/1997 19:02:42
Daniel Koo writes:
> Dear friends of NetBSD,
>
> I want to install some binaries after i have installed and then
> booted the System with the base and comp binaries.
> The Extract command is not existent.
>
> Thanks for your appreciate,
Daniel;
I suspect you are asking about how to extract more sets after you have
finished your install.
There is nothing magic about the sets -- they are just compressed tar
files, and thus "extract" is simply the command
cat tarfile.tar.gz | (cd /; tar --unlink -xzBpf - )
so you can run it at any time.
Perry