AIX doesn't recognize -x xtar either, and neither does HP-UX's pax.
On my linux machine, with my pax implementation, the following formats are recognized: cpio, bcpio, sv4cpio, sv4crc, tar and ustar.
I did not find any information about xtar, but maybe try the ustar format (extended tar format), maybe that's what they call xtar in HPTRU64 implementation?
Edit:
According to
this page, xtar is ustar but with long file names and extended UID/GID values:
Quote:
xtar
Extended tar interchange format. The default blocking value for
this format for character special archive files is 10240. Blocking
values from 512 to 32,256 in increments of 512 are supported. This
option lets the user archive long file names and extended UID/GID
values.
ustar
Extended tar interchange format. This is the default output
archive format. The default blocking value for this format for
character special archive files is 10240. Blocking values from 512
to 32,256 in increments of 512 are supported.
|