Path: utzoo!attcan!uunet!franz!sparky!jdi From: jdi@sparky.Franz.COM (John Irwin) Newsgroups: comp.sys.next Subject: Re: tarring to a remote Exabyte Message-ID: <6221@franz.Franz.COM> Date: 16 Mar 90 04:39:33 GMT References: <90058.160054BSD@psuvm.psu.edu> <351@toaster.SFSU.EDU> Sender: usenet@Franz.COM Reply-To: jdi@franz.COM (John Irwin) Organization: Franz Inc., Berkeley, CA Lines: 20 In article <351@toaster.SFSU.EDU> eps@cs.SFSU.EDU (Eric P. Scott) writes: >tar works fine with a locally-attached Exabyte, but I'm not having >much luck across a communications channel. > >For example, why would > tar cbf 20 /dev/nrxt0 ... >work, yet > tar cbf 20 - ... | dd of=/dev/nrxt0 bs=20b > >not? >... You need to use: tar cbf 20 - ... | dd of=/dev/nrxt0 obs=20b IE: you only want to specify the output block size, not the input and output block size. This is because of how Unix buffers pipes. -- John Irwin Franz Inc.