Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!brl-adm!brl-smoke!gwyn From: gwyn@brl-smoke.UUCP Newsgroups: comp.unix.questions Subject: Re: Reading BSD 4.3 tar tapes on System V Message-ID: <5623@brl-smoke.ARPA> Date: Fri, 13-Feb-87 16:19:57 EST Article-I.D.: brl-smok.5623 Posted: Fri Feb 13 16:19:57 1987 Date-Received: Sun, 15-Feb-87 23:18:58 EST References: <109@amcad.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Distribution: na Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 13 In article <109@amcad.UUCP> billb@amcad.UUCP (Bill Burton) writes: > We have a Burroughs XE-550 running CENTIX (System V) and have >been unable to read tapes created with tar on a VAX BSD 4.3 system. > One other thing. We could successfully unpack a tar archive >created under BSD 4.3 and sent via uucp with our System V tar. This makes it sound like the problem is in the magtape blocking. Either your magtape drive can't handle the large blocksize used (typically 10240 bytes per block), or your "tar" gets confused by whatever blocksize it finds. Older System V "tar"s are known to have this problem. Two alternative methods: (1) supply an explicit "b" option, as in "tar xbf 20 /dev/rmt0", or (2) use "dd" to buffer the tape blocking, as in "dd if=/dev/rmt0 ibs=20b|tar xf -".