From owner-freebsd-questions Wed Apr 12 5: 9: 1 2000 Delivered-To: freebsd-questions@freebsd.org Received: from skaarup.org (skaarup.org [130.228.230.140]) by hub.freebsd.org (Postfix) with ESMTP id D432037B7D9 for ; Wed, 12 Apr 2000 05:08:57 -0700 (PDT) (envelope-from rasmus@gal.dk) Received: from localhost (skaarup@localhost) by skaarup.org (8.9.3/8.9.3) with ESMTP id OAA48096; Wed, 12 Apr 2000 14:08:55 +0200 (CEST) (envelope-from rasmus@gal.dk) Date: Wed, 12 Apr 2000 14:08:55 +0200 (CEST) From: Rasmus Skaarup X-Sender: skaarup@skaarup.org To: Frederik Meerwaldt Cc: freebsd-questions@FreeBSD.ORG Subject: Re: More files on one tape. In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 12 Apr 2000, Frederik Meerwaldt wrote: > Hi all, > > how can I write more files to a tape, or create a filesystem on it? > The way I do it for now is just: > > cat myfilename.tgz > /dev/rsa0 > > Is there a way I can copy files to a tape and handle the tape as a normal > HDD? mount, copy.... You know tar cvf /dev/rsa0 all the files you want on the tape seperated by a space tar xvf /dev/rsa0 Will expand the files on the tape from /dev/rsa0. 'tar' means Tape Archiver, or something.. 'man tar'. :-) Best regards Rasmus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message