Post by mechanicSomething wrong here - I get directory checksum errors when trying
to untar .tar.xz files downloaded from alpineapp.email - various tar
options tried with no success.
Thoughts?
xzcat alpine-2.26.tar.xz | tar xpf -
works fine for me.
xzcat is described here:
https://www.systutorials.com/docs/linux/man/1-xzcat/
and you can get the software from:
https://tukaani.org/xz/
Alternatively the GNU version of tar can handle .xz files, so:
gtar xpf alpine-2.26.tar.xz
should just work. gtar is standard version of tar installed on
most Linux systems. It's usually available as a port/package on
BSD-based Unix systems. You may need to install GNU tar on your
Solaris system. I used to do this many, many years ago when I
worked on Solaris systems. See:
https://www.gnu.org/software/tar/
You may find that gtar and xz are already available as pre-compiled
packages for Solaris. I just wouldn't know where to look :-(
As usual, Google -- or an alternative search engine -- may be your
friend here.
--
Dennis Davis <***@fastmail.fm>