Void Linux discussion
 help / color / mirror / Atom feed
* Any way to get Adobe Acrobat reader on Void Linux?
@ 2023-05-01 15:54 Mayuresh
  2023-05-01 18:10 ` Parke
  0 siblings, 1 reply; 7+ messages in thread
From: Mayuresh @ 2023-05-01 15:54 UTC (permalink / raw)
  To: void linux

I am just looking for the digital signature verification in a pdf - some
bureaucratic requirement to show that green tick mark in acrobat reader to
someone.

If I install the version 9 by adobe website, I get this:

/opt/Adobe/Reader9/bin/acroread: 22: exec: /opt/Adobe/Reader9/Reader/intellinux/bin/acroread: not found


/opt/Adobe/Reader9/Reader/intellinux/bin/acroread is actually present.

I think, this might have something to do with running 32-bit executables.

Any advice on how to go about this?

-- 
Mayuresh

-- 
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/20230501155443.e5ztmlj73dcye2pr%40localhost.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Any way to get Adobe Acrobat reader on Void Linux?
  2023-05-01 15:54 Any way to get Adobe Acrobat reader on Void Linux? Mayuresh
@ 2023-05-01 18:10 ` Parke
  2023-05-03 10:58   ` Mayuresh
  2023-05-03 20:06   ` Leah Neukirchen
  0 siblings, 2 replies; 7+ messages in thread
From: Parke @ 2023-05-01 18:10 UTC (permalink / raw)
  To: voidlinux


[-- Attachment #1.1: Type: text/plain, Size: 820 bytes --]

The following command might show you the libraries that 
.../intellinux/bin/acroread expects.

ldd /opt/Adobe/Reader9/Reader/intellinux/bin/acroread

You could also edit .../Reader9/bin/acroread on line 22 to run 
.../intellinux/bin/acroread via strace.  That might give you some useful 
info.

As for how to install 32 bit libraries (which might actually fix the 
problem), that I don't know.

Possibly also relevant:
https://stackoverflow.com/a/67331180

-- 
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/d60f1f0c-c3be-4340-a9b0-39e1209bd5c4n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 1205 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Any way to get Adobe Acrobat reader on Void Linux?
  2023-05-01 18:10 ` Parke
@ 2023-05-03 10:58   ` Mayuresh
  2023-05-03 19:52     ` Parke
  2023-05-03 20:06   ` Leah Neukirchen
  1 sibling, 1 reply; 7+ messages in thread
From: Mayuresh @ 2023-05-03 10:58 UTC (permalink / raw)
  To: Parke; +Cc: voidlinux

On Mon, May 01, 2023 at 11:10:22AM -0700, Parke wrote:
> The following command might show you the libraries that 
> .../intellinux/bin/acroread expects.
> 
> ldd /opt/Adobe/Reader9/Reader/intellinux/bin/acroread

$ file /opt/Adobe/Reader9/Reader/intellinux/bin/acroread
/opt/Adobe/Reader9/Reader/intellinux/bin/acroread: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.2.5, stripped

$ ldd /opt/Adobe/Reader9/Reader/intellinux/bin/acroread
        not a dynamic executable

> You could also edit .../Reader9/bin/acroread on line 22 to run 
> .../intellinux/bin/acroread via strace.  That might give you some useful 
> info.

$ strace /opt/Adobe/Reader9/Reader/intellinux/bin/acroread
execve("/opt/Adobe/Reader9/Reader/intellinux/bin/acroread", ["/opt/Adobe/Reader9/Reader/intell"...], 0x7ffda41764f0 /* 72 vars */) = -1 ENOENT (No such file or directory)
strace: exec: No such file or directory
+++ exited with 1 +++


> As for how to install 32 bit libraries (which might actually fix the 
> problem), that I don't know.
> 
> Possibly also relevant:
> https://stackoverflow.com/a/67331180

Dealing with some place wanting that green tick mark and nothing else...

-- 
Mayuresh

-- 
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/20230503105851.jeg75crmklnpil4h%40localhost.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Any way to get Adobe Acrobat reader on Void Linux?
  2023-05-03 10:58   ` Mayuresh
@ 2023-05-03 19:52     ` Parke
  0 siblings, 0 replies; 7+ messages in thread
From: Parke @ 2023-05-03 19:52 UTC (permalink / raw)
  To: voidlinux


[-- Attachment #1.1: Type: text/plain, Size: 1773 bytes --]

On Wednesday, May 3, 2023 at 3:58:53 AM UTC-7 Mayuresh wrote:

$ file /opt/Adobe/Reader9/Reader/intellinux/bin/acroread 
/opt/Adobe/Reader9/Reader/intellinux/bin/acroread: ELF 32-bit LSB 
executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter 
/lib/ld-linux.so.2, for GNU/Linux 2.2.5, stripped 

$ ldd /opt/Adobe/Reader9/Reader/intellinux/bin/acroread 
not a dynamic executable


Strange that ldd cannot read the executable.  But maybe that always happens 
for 32-bit executables on 64-bit system?  I don't have enough experience to 
know.

Is the file /lib/ld-linux.so.2 present on your system?  That file should be 
the 32-bit dynamic linker.

Whereas on my 64 bit system, the 64-bit dynamic linker appears to 
be /lib64/ld-linux-x86-64.so.2.

$ ldd /bin/ls
        linux-vdso.so.1 (0x00007fff74385000)
        libselinux.so.1 => /lib/x86_64-linux-gnu/libselinux.so.1 
(0x00007f26d9c1f000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f26d99f7000)
        libpcre2-8.so.0 => /lib/x86_64-linux-gnu/libpcre2-8.so.0 
(0x00007f26d9960000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f26d9c7d000)

$ file /bin/ls
/bin/ls: ELF 64-bit LSB pie executable, x86-64, version 1 (SYSV), 
dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, 
BuildID[sha1]=[snip], for GNU/Linux 3.2.0, stripped

Sorry I cannot offer more assistance.

-- 
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/680c3b83-67c4-4f72-b0c7-8f5530193c99n%40googlegroups.com.

[-- Attachment #1.2: Type: text/html, Size: 2417 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Any way to get Adobe Acrobat reader on Void Linux?
  2023-05-01 18:10 ` Parke
  2023-05-03 10:58   ` Mayuresh
@ 2023-05-03 20:06   ` Leah Neukirchen
  2023-05-04  1:02     ` Mayuresh
  1 sibling, 1 reply; 7+ messages in thread
From: Leah Neukirchen @ 2023-05-03 20:06 UTC (permalink / raw)
  To: Parke; +Cc: voidlinux

Parke <parke.nexus@gmail.com> writes:

> The following command might show you the libraries that 
> .../intellinux/bin/acroread expects.
>
> ldd /opt/Adobe/Reader9/Reader/intellinux/bin/acroread
>
> You could also edit .../Reader9/bin/acroread on line 22 to run 
> .../intellinux/bin/acroread via strace.  That might give you some useful 
> info.
>
> As for how to install 32 bit libraries (which might actually fix the 
> problem), that I don't know.

Install void-repo-multilib,
then glibc-32bit libxml2-32bit gtk+-32bit etc.
(now ldd should work too)

-- 
Leah Neukirchen  <leah@vuxu.org>  https://leahneukirchen.org/

-- 
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/87jzxpi3ii.fsf%40vuxu.org.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Any way to get Adobe Acrobat reader on Void Linux?
  2023-05-03 20:06   ` Leah Neukirchen
@ 2023-05-04  1:02     ` Mayuresh
  2023-05-04  4:26       ` Mayuresh
  0 siblings, 1 reply; 7+ messages in thread
From: Mayuresh @ 2023-05-04  1:02 UTC (permalink / raw)
  To: Leah Neukirchen; +Cc: Parke, voidlinux

On Wed, May 03, 2023 at 10:06:13PM +0200, Leah Neukirchen wrote:
> Install void-repo-multilib,
> then glibc-32bit libxml2-32bit gtk+-32bit etc.
> (now ldd should work too)

Thanks that helped.

$ ldd /opt/Adobe/Reader9/Reader/intellinux/bin/acroread | grep "not found"
        libBIB.so => not found
        libBIBUtils.so => not found
        libACE.so => not found
        libAGM.so => not found
        libCoolType.so => not found
        libAXE8SharedExpat.so => not found
        libJP2K.so => not found
        libAdobeXMP.so => not found
        libicuuc.so.36 => not found
        libssl.so.0.9.8 => not found
        libcrypto.so.0.9.8 => not found
        libResAccess.so => not found


Using xlocate (or is some other tool better at this?) searched for
packages for these.

In most cases xlocate did not show any result.

In some cases (e.g. libssl, libcrypto, (versions suffixed with -32bit))
the installed version is newer and does not match the 'not found' version.

Please advise.

-- 
Mayuresh

-- 
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/20230504010203.tbcjrepumjd623xv%40localhost.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Any way to get Adobe Acrobat reader on Void Linux?
  2023-05-04  1:02     ` Mayuresh
@ 2023-05-04  4:26       ` Mayuresh
  0 siblings, 0 replies; 7+ messages in thread
From: Mayuresh @ 2023-05-04  4:26 UTC (permalink / raw)
  To: Leah Neukirchen; +Cc: Parke, voidlinux

On Thu, May 04, 2023 at 06:32:03AM +0530, Mayuresh wrote:
> Using xlocate (or is some other tool better at this?) searched for
> packages for these.
> 
> In most cases xlocate did not show any result.
> 
> In some cases (e.g. libssl, libcrypto, (versions suffixed with -32bit))
> the installed version is newer and does not match the 'not found' version.
> 
> Please advise.

In the meantime I tried docker image mgor/acroread.

I can get acroread started, it even asks for password to open the
encrypted PDF file. But on entering password it crashes. Not sure whether
acroread issue or docker issue or a setup issue.

-- 
Mayuresh

-- 
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/20230504042609.hucl5sm4o24lgkir%40localhost.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-05-04  4:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-01 15:54 Any way to get Adobe Acrobat reader on Void Linux? Mayuresh
2023-05-01 18:10 ` Parke
2023-05-03 10:58   ` Mayuresh
2023-05-03 19:52     ` Parke
2023-05-03 20:06   ` Leah Neukirchen
2023-05-04  1:02     ` Mayuresh
2023-05-04  4:26       ` Mayuresh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).