Odi's astoundingly incomplete notes
New entries | CodeCopying tar files between Linux and Solaris / SunOS
The tar file format produced by GNU tar is slightly incompatible with Unix tar on Solaris. You will notice that when you tar deeply nested directory hierarchies like java class trees or Java API documentation. Then the Unix tar would complain about @LongLink stuff. Solution: use pax instead of tar.
# this creates an archive of a directory pax -w -f archive.tar directory # this extracts an archive pax -r < archive.tarThe only drawback: pax doesn't support compression directly. So an extra gzip/gunzip doesn't do harm.
Julius Davies
Odi