From owner-freebsd-questions Sun Jul 28 12:08:03 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA05173 for questions-outgoing; Sun, 28 Jul 1996 12:08:03 -0700 (PDT) Received: from pluto.eecs.ukans.edu (pluto.eecs.ukans.edu [129.237.116.34]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA05167 for ; Sun, 28 Jul 1996 12:08:01 -0700 (PDT) Received: (from conley@localhost) by pluto.eecs.ukans.edu (8.6.12/8.6.12) id OAA24184; Sun, 28 Jul 1996 14:07:22 -0500 Date: Sun, 28 Jul 1996 14:07:21 -0500 (CDT) From: "Dennis R. Conley" To: questions@FreeBSD.org Subject: how to make the scsi install tape Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Installation from scsi tape always fails. The drive moves the tape around from quite awhile, so I assume the failure is due to my having made the tape incorrectly. From INSTALL.TXT: |Installing from tape is probably the easiest method, short of an |on-line install using FTP or a CDROM. The installation program |expects the files to be simply tar'ed onto the tape, so after getting |all of the files for the distributions you're interested in, simply |tar them onto the tape with a command like: | | cd /where/you/have/your/dists | tar cvf /dev/rwt0 (or /dev/rst0) dist1 .. dist2 I assume "dist1", "dist2" are directories, e.g. % cd /src/tmp/freebsd/2.1.5-RELEASE % tar c ./bin ./des ./doc ./src Unfortunately, this didn't work. Nor did: % cd /src/tmp/freebsd/2.1.5-RELEASE % cd bin ; tar c . % cd ../des ; tar r . % cd ../doc ; tar r . So I'm lost: which "files" are tar'd onto the tape ( or, rather, from which part of the 2.1.5-RELEASE path is the tar performed )? Many thanks.