Path: utzoo!utgpu!news-server.csri.toronto.edu!mailrus!wuarchive!zaphod.mps.ohio-state.edu!van-bc!ubc-cs!fornax!chapman From: chapman@fornax.UUCP (John Chapman) Newsgroups: comp.unix.xenix Subject: Re: SCO Xenix tar reading SUN tapes Summary: try byte swapping Message-ID: <926@fornax.UUCP> Date: 8 Jul 90 03:28:27 GMT References: <87@joymrmn.UUCP> <1220@sixhub.UUCP> Organization: School of Computing Science, SFU, Burnaby, B.C. Canada Lines: 20 In article <1220@sixhub.UUCP>, davidsen@sixhub.UUCP (Wm E. Davidsen Jr) writes: > In article <87@joymrmn.UUCP> root@joymrmn.UUCP (Marcel D. Mongeon) writes: > | I have a number of 60MB tapes which were written on a SUN. (I have > | no idea which one). They were written in tar format. When I use > | tar under Xenix 386, they come up as unreadable. > > To read them you will probably need a Sun to convert them to standard > format. Sun has two formats, /dev/rst0 which is probably what you have, > and /dev/rst8 which is QIC-24. QIC-24 is what the rest of the world > uses, has a higher density and transfer rate, and should be the default > for everything (but isn't). > You definitely need qic24 (rst8) so check that; but you will also probably have to byte-swap the tape (I do), e.g. dd if=/dev/yourtape ibs=52100 conv=swab | tar tvf - on your 386. Hope this helps.