From owner-freebsd-questions@FreeBSD.ORG Thu May 6 11:32:37 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0B9716A4CE for ; Thu, 6 May 2004 11:32:37 -0700 (PDT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EB6943D3F for ; Thu, 6 May 2004 11:32:37 -0700 (PDT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from be-well.no-ip.com ([66.30.196.44]) by comcast.net (sccrmhc11) with ESMTP id <2004050618323601100juj6ne>; Thu, 6 May 2004 18:32:36 +0000 Received: by be-well.no-ip.com (Postfix, from userid 1147) id 3E8C412; Thu, 6 May 2004 14:32:36 -0400 (EDT) Sender: lowell@be-well.ilk.org To: freebsd-questions@freebsd.org, robert@webtent.com References: <200405061527.i46FRoFU034858@whoweb.com> From: Lowell Gilbert Date: 06 May 2004 14:32:36 -0400 In-Reply-To: <200405061527.i46FRoFU034858@whoweb.com> Message-ID: <44u0ytfltn.fsf@be-well.ilk.org> Lines: 17 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: Restoring system files from CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 May 2004 18:32:37 -0000 Incoming Mail List writes: > You don't have to install the entire OS to another machine if you have a > medium to large area on your disk. Mount up the #1 CDROM and then create > a scratch directory somewhere on your system. Go to the distribution > that you think contains the files you are missing (sounds like "base" > to me) and cat() the install.sh script. You'll see that you can execute > the script and send it a "DESTINATION" argument on the command line. > That script will extract that particular distribution to what ever > directory you include on the command line. Given that the needed files are already listed in a file, you could do it directly and just unpack those particular files. Something along the lines of "cat /mnt/cdrom/bin/* | tar -xzT listingFile -f -" should do it.