Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!usc!snorkelwacker!bloom-beacon!eru!hagbard!sunic!mcsun!hp4nl!tuegate.tue.nl!svin02!wsinis02!wsinpdb From: wsinpdb@wsinis02.info.win.tue.nl (Paul de Bra) Newsgroups: comp.sys.att Subject: Re: "Shoe-shining" with 60 meg Wangtek tape on Sys V 386 3.2.1 Message-ID: <1496@svin02.info.win.tue.nl> Date: 19 Oct 90 11:44:27 GMT References: <1990Oct18.152955.14275@uhura.neoucom.EDU> Sender: news@svin02.info.win.tue.nl Reply-To: wsinpdb@info.win.tue.nl Organization: Eindhoven University of Technology, The Netherlands Lines: 18 In article <1990Oct18.152955.14275@uhura.neoucom.EDU> wtm@uhura.neoucom.EDU (Bill Mayhew) writes: >I've been trying to figure out a way to prevent shoe-shining of the >tape (repeated short back-and-forth movement) on a 60 meg >Sperry/CMS Wangtek tape drive on my Sys V 386 3.2.1 system. I did > >find /usr/local -name "*" -print | cpio -oc -C1024 > /dev/rmt/c0s0 According to the manual the -Cn option gives you a buffer of n BYTES, not n BLOCKS. There is a bug in the 3.2.1 cpio however which makes cpio give you a buffer of 10xn BYTES. So you really have asked for a 10k buffer. You can safely use cpio -oc -C100000 to get a 1000000 byte buffer. I always use -C131072 or -C262144 to get a multiple of 1024 bytes after the 10x bug. Paul. (debra@research.att.com)