Discussion:
Build alpine on Solaris 11.4
(too old to reply)
mechanic
2022-10-11 11:19:29 UTC
Permalink
Something 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?
Dennis Davis
2022-10-11 12:31:51 UTC
Permalink
Post by mechanic
Something 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>
mechanic
2022-10-11 14:12:58 UTC
Permalink
Post by Dennis Davis
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
https://www.gnu.org/software/tar/
Thanks, gnu-tar is the installed package with the tar command - but
running the gtar command with the expression quoted above works!

I suspect that won't be the worst problem in getting alpine
installed :-(

Loading...