Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

No wonder Clairol makes so much money selling shampoo. Lather, Rinse, Repeat is an infinite loop!


computers / comp.mail.pine / Build alpine on Solaris 11.4

SubjectAuthor
* Build alpine on Solaris 11.4mechanic
`* Re: Build alpine on Solaris 11.4Dennis Davis
 `- Re: Build alpine on Solaris 11.4mechanic

1
Build alpine on Solaris 11.4

<lg093tl5iyzj.dlg@example1357.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=467&group=comp.mail.pine#467

  copy link   Newsgroups: comp.mail.pine
Path: i2pn2.org!i2pn.org!aioe.org!s7UVNVhnFPn5qeGUhmZTYg.user.46.165.242.91.POSTED!not-for-mail
From: mechanic@example.net (mechanic)
Newsgroups: comp.mail.pine
Subject: Build alpine on Solaris 11.4
Date: Tue, 11 Oct 2022 12:19:29 +0100
Organization: Aioe.org NNTP Server
Message-ID: <lg093tl5iyzj.dlg@example1357.net>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="2791"; posting-host="s7UVNVhnFPn5qeGUhmZTYg.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: 40tude_Dialog/2.0.15.1
X-Notice: Filtered by postfilter v. 0.9.2
 by: mechanic - Tue, 11 Oct 2022 11:19 UTC

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?

Re: Build alpine on Solaris 11.4

<ti3nnn$3r1$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=468&group=comp.mail.pine#468

  copy link   Newsgroups: comp.mail.pine
Path: i2pn2.org!i2pn.org!aioe.org!1R2xgyxjvFl3NqO6Rb4V6w.user.46.165.242.75.POSTED!not-for-mail
From: dennisdavis@fastmail.fm (Dennis Davis)
Newsgroups: comp.mail.pine
Subject: Re: Build alpine on Solaris 11.4
Date: Tue, 11 Oct 2022 12:31:51 -0000 (UTC)
Organization: Aioe.org NNTP Server
Message-ID: <ti3nnn$3r1$1@gioia.aioe.org>
References: <lg093tl5iyzj.dlg@example1357.net>
Injection-Info: gioia.aioe.org; logging-data="3937"; posting-host="1R2xgyxjvFl3NqO6Rb4V6w.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
Originator: ccsdhd@poulidor.example.net (Dennis Davis)
X-Notice: Filtered by postfilter v. 0.9.2
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
 by: Dennis Davis - Tue, 11 Oct 2022 12:31 UTC

In article <lg093tl5iyzj.dlg@example1357.net>,
mechanic <mechanic@example.net> wrote:
>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 <dennisdavis@fastmail.fm>

Re: Build alpine on Solaris 11.4

<1fa1aswb656uk$.dlg@example1357.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=469&group=comp.mail.pine#469

  copy link   Newsgroups: comp.mail.pine
Path: i2pn2.org!i2pn.org!aioe.org!s7UVNVhnFPn5qeGUhmZTYg.user.46.165.242.91.POSTED!not-for-mail
From: mechanic@example.net (mechanic)
Newsgroups: comp.mail.pine
Subject: Re: Build alpine on Solaris 11.4
Date: Tue, 11 Oct 2022 15:12:58 +0100
Organization: Aioe.org NNTP Server
Message-ID: <1fa1aswb656uk$.dlg@example1357.net>
References: <lg093tl5iyzj.dlg@example1357.net> <ti3nnn$3r1$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="37176"; posting-host="s7UVNVhnFPn5qeGUhmZTYg.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: 40tude_Dialog/2.0.15.1
X-Notice: Filtered by postfilter v. 0.9.2
 by: mechanic - Tue, 11 Oct 2022 14:12 UTC

On Tue, 11 Oct 2022 12:31:51 -0000 (UTC), Dennis Davis wrote:

> 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/

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 :-(

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor