[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lynx-dev] 32 Bit Ubuntu binary with https
From: |
Stefan Caunter |
Subject: |
Re: [Lynx-dev] 32 Bit Ubuntu binary with https |
Date: |
Thu, 5 Jan 2017 00:50:16 -0500 |
On Wed, Jan 4, 2017 at 9:28 PM, Menasheh Peromsik
<address@hidden> wrote:
> Is there a 32 bit linux binary (with ssl) available for lynx somewhere? If
> not, how do I build it? I'm trying to get some version of lynx working on
> android as per this XDA thread. It just says "move the binary" and doesn't
> provide a binary. I have a 64 bit linux, so I can't just grab it from here.
you can get a binary from the debian i386 packaging system
https://packages.debian.org/jessie/i386/lynx-cur/download
from here
https://web.archive.org/web/20160307164024/https://lists.debian.org/debian-user/2001/07/msg00645.html
you will find these useful commands
list contents of the data.tar.xz part of the deb:
ar p lynx-cur_2.8.9dev1-2+deb8u1_i386.deb data.tar.xz | tar ztf -
extract contents of data.tar.xz:
ar p lynx-cur_2.8.9dev1-2+deb8u1_i386.deb data.tar.xz | tar zxf -
this gets you a usr/bin directory, with a 32 bit lynx binary
stef$ file usr/bin/lynx
usr/bin/lynx: ELF 32-bit LSB executable, Intel 80386, version 1
(SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for
GNU/Linux 2.6.32,
BuildID[sha1]=8d5b7c136a20d7a64e992c0e6bf26910482be871, stripped
__stef