Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utcs!mnetor!seismo!husc6!harvard!panda!genrad!decvax!dartvax!uvm-gen!hartley From: hartley@uvm-gen.UUCP Newsgroups: net.unix-wizards Subject: Re: Help in reading Mangled TAR tape Message-ID: <344@uvm-gen.UUCP> Date: Fri, 11-Jul-86 10:44:11 EDT Article-I.D.: uvm-gen.344 Posted: Fri Jul 11 10:44:11 1986 Date-Received: Sun, 13-Jul-86 06:56:48 EDT References: <165@grpthry.UUCP> Organization: University of Vermont (780a) Lines: 8 > I am having problem retrieving (sp?) information from a tar tape. It keeps > giving me a checksum error on a directory. Try dd-ing the tape into a file: dd if=/dev/rmt8 of=file ibs=10240 conv=noerror,sync Then you can try taring out of the file: tar xivf file where the i option is to ignore checksum errors. Might help.