Parent document is top of "comp.sys.hp.hpux FAQ"
Previous document is "9.12 What are the various revisions of PA-RISC?"
Next document is "9.14 Is there a trackball for the 700?"

9.13 How do I read an SGI-written tar format DDS tape?

The secret (at least in this case) is to byte-swap the tape before
passing it to tar:

        dd if=/dev/rmt/0m conv=swab | tar -xvf -

Byte swapping is believed to only be necessary if the device which
created the tape was a swapping one. (Swapping tape devices are the
default on IRIX 4, but not in IRIX 5). One can use /dev/nrtapens on
either system to produce tapes which are not byte-swapped.
If the SGI is running Irix 5.0x and above, a large (512k) block
size is used:

        dd if=/dev/rmt/0m ibs=512k obs=10k| tar -xvf -

(thanks to Paul Booth           <paul@eye.com> and
           Christian L Claiborn <claiborn@ctron.com>)

Parent document is top of "comp.sys.hp.hpux FAQ"
Previous document is "9.12 What are the various revisions of PA-RISC?"
Next document is "9.14 Is there a trackball for the 700?"