Efficient tape I/O with 386/ix; How??
Paul De Bra
debra at alice.UUCP
Sun Dec 11 11:45:40 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 drive
]is not streaming very well. It spends most of it's time stopping
]and starting. I'm using an Everex Excel 60 with a long controller
]card.
]
]The command I've used is
] find . -print | cpio -ovc >/dev/rmt0
]
A solution which also works for other applications is to use "cat":
find . -print | cpio -ovc | cat | cat > /dev/rmt0
Hope this helps.
Paul.
--
------------------------------------------------------
|debra at research.att.com | uunet!research!debra |
------------------------------------------------------
More information about the Comp.unix.microport
mailing list