Efficient tape I/O with 386/ix; How??

Pim Zandbergen pim at ctisbv.UUCP
Sun Dec 11 23:50:55 AEST 1988


In article <317 at focsys.UUCP> larry at focsys.UUCP (Larry Williamson) writes:
>Streaming tape I/O with 386/ix seems to be rather slow.  
>
>The command I've used is
>	find . -print | cpio -ovc >/dev/rmt0
>
A better command would be:

	find . -print | cpio -ovcBO /dev/rmt0
This tells cpio to use 5120 byte blocks.

You can also use dd(1) to have arbitrary blocksizes, like in:

	find . -print | cpio -ovc | dd of=/dev/rmt0 obs=20k

Try some different blocksizes for optimum results.
-- 
--------------------+------------------------------------+---------------------
Pim Zandbergen      | CTI Software BV                    | Phone: +31 70 542302 
pim at ctisbv.UUCP     | Laan Copes van Cattenburch 70      | Fax:   +31 70 512837
..!mcvax!ctisbv!pim | 2585 GD The Hague, The Netherlands | Telex: 32133 CTI NL



More information about the Comp.unix.microport mailing list