From owner-freebsd-questions Sun Dec 7 14:45:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA29936 for questions-outgoing; Sun, 7 Dec 1997 14:45:54 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from BIGFUN.vwcom.com (BIGFUN.vwcom.com [151.197.101.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA29320 for ; Sun, 7 Dec 1997 14:38:38 -0800 (PST) (envelope-from bmc@WillsCreek.COM) Received: from WillsCreek.COM (gw.willscreek.com [151.197.101.46]) by BIGFUN.vwcom.com (8.8.6/8.8.6) with ESMTP id RAA01594; Sun, 7 Dec 1997 17:31:31 -0500 (EST) Received: from current.willscreek.com (current.willscreek.com [172.16.87.1]) by WillsCreek.COM (8.8.7/8.8.5) with ESMTP id RAA24215; Sun, 7 Dec 1997 17:36:23 -0500 (EST) Received: (from bmc@localhost) by current.willscreek.com (8.8.7/8.8.5) id RAA06207; Sun, 7 Dec 1997 17:36:22 -0500 (EST) Date: Sun, 7 Dec 1997 17:36:22 -0500 (EST) Message-Id: <199712072236.RAA06207@current.willscreek.com> From: Brian Clapper MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Doug Jolley , questions@FreeBSD.ORG Subject: Re: Getting a file from CD-ROM In-Reply-To: <199712072117.QAA06105@current.willscreek.com> References: <199712070333.TAA25982@jupiter.neptune.net> <199712072117.QAA06105@current.willscreek.com> X-Mailer: VM 6.23 under Emacs 19.34.1 Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I wrote: > There are several ways to get the file you mentioned, /etc/rc.conf: > > 1. Get it from the "source" distribution tarball. Mount the installation > CD-ROM. `cd' to its "bin" subdirectory, and run the following command. ^^^ Sorry, make that "src". > That command will put the gzipped tarball back together again, > uncompress it, and extract "etc/rc.conf" onto standard output, which is > then redirected to "/tmp/rc.conf". Note the lack of leading "/" in > "etc/rc.conf". > > cat setc.?? | tar xzfO - etc/rc.conf >/tmp/rc.conf > > 2. Get it from the "bin" distribution tarball. Mount the installation > CD-ROM. `cd' to its "bin" subdirectory, and run the following command. > > cat bin.?? | tar xzfO - etc/rc.conf >/tmp/rc.conf > > This will take longer than #1, since the "bin" tarball is enormous. > > 3. Get it from the source CD-ROM. This time, you don't need to worry about > a tarball at all; "/etc/rc.conf" exists as a separate file on the live > file system. Put the "live file system" CD-ROM in your drive and mount > it. You'll find "rc.conf" in the "etc" subdirectory on that disk. > > 4. It's also in the CVS repository disk, if you have Walnut Creek's > 2.2.5-RELEASE CD-ROM set. ----- Brian Clapper, bmc@WillsCreek.COM, http://WWW.WillsCreek.COM/ Osborn's Law: Variables won't; constants aren't.