LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-08-2020, 02:01 PM   #1
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Rep: Reputation: 76
Slackware64-current: Trying to install a PDF reader.


Slackware64-current
kernel 5.4.50

Hi: I looked for Okular in slackbuilds.org and did not found it. Then I downloaded, from https://helpx.adobe.com/air/kb/archi...k-version.html, an old Adobe Acrobat Reader for Linux and got this file: AdobeAIRInstaller.bin. Now
Code:
root@darkstar:/home/bill/Downloads# ls -l
total 15772
-rwxr-xr-x 1 bill bill 16127348 Jul  8 12:45 AdobeAIRInstaller.bin*
root@darkstar:/home/bill/Downloads# ./AdobeAIRInstaller.bin 
-su: ./AdobeAIRInstaller.bin: No such file or directory
root@darkstar:/home/bill/Downloads#
If I do the same from a text console it is bash and not su who gives the message. what happens here?

EDIT: please note I know Adobe no longer supports Linux.

Last edited by stf92; 07-08-2020 at 02:05 PM.
 
Old 07-08-2020, 02:21 PM   #3
average_user
Member
 
Registered: Dec 2010
Location: Warsaw, Poland
Distribution: Slackware
Posts: 560

Rep: Reputation: 220Reputation: 220Reputation: 220
Quote:
Originally Posted by stf92 View Post
Slackware64-current
kernel 5.4.50

Hi: I looked for Okular in slackbuilds.org and did not found it. Then I downloaded, from https://helpx.adobe.com/air/kb/archi...k-version.html, an old Adobe Acrobat Reader for Linux and got this file: AdobeAIRInstaller.bin. Now
Code:
root@darkstar:/home/bill/Downloads# ls -l
total 15772
-rwxr-xr-x 1 bill bill 16127348 Jul  8 12:45 AdobeAIRInstaller.bin*
root@darkstar:/home/bill/Downloads# ./AdobeAIRInstaller.bin 
-su: ./AdobeAIRInstaller.bin: No such file or directory
root@darkstar:/home/bill/Downloads#
If I do the same from a text console it is bash and not su who gives the message. what happens here?
It's a 32-bit ELF executable:
Code:
$ file AdobeAIRInstaller.bin
AdobeAIRInstaller.bin: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, stripped
that you're trying to run on a 64-bit system but you don't have a 32-bit dynamic interpreter:
Code:
$ readelf -a AdobeAIRInstaller.bin | grep "Requesting"
      [Requesting program interpreter: /lib/ld-linux.so.2]
You need multilib to run this executable. But I wouldn't use anything Adobe if they don't like Linux. Personally I use zathura pdf viewer because you can use without a mouse.

Last edited by average_user; 07-08-2020 at 02:24 PM.
 
Old 07-08-2020, 02:30 PM   #4
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,061

Rep: Reputation: Disabled
okular is indeed in Slackware-current. But as it's in the kde/ series you don't have it. Please don't try to install it, because you would miss its dependencies, leading to one more support request wasting the time of people trying to help you.

Instead, try xpdf or gv. You have both already installed.
 
Old 07-08-2020, 02:42 PM   #5
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
In the 14.2 installer there is not a KDE series. There is a window where KDE and Xfce are options, and I always chose Xfce only and had no problems running okular. The morals is I would be better off with 14.2, I think. Is there a 32-bit slackware current?
 
Old 07-08-2020, 02:48 PM   #6
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,061

Rep: Reputation: Disabled
I give up. Good luck.
 
Old 07-08-2020, 02:50 PM   #7
average_user
Member
 
Registered: Dec 2010
Location: Warsaw, Poland
Distribution: Slackware
Posts: 560

Rep: Reputation: 220Reputation: 220Reputation: 220
IMO you shouldn't rely on 32-bit software these days. There many 64-bit pdf readers available and many of them are also open source in contrary to Adobe Acrobat Reader: evince, zathura, okular are the first that come to my mind.
 
Old 07-08-2020, 02:59 PM   #8
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,798

Rep: Reputation: 1481Reputation: 1481Reputation: 1481Reputation: 1481Reputation: 1481Reputation: 1481Reputation: 1481Reputation: 1481Reputation: 1481Reputation: 1481
Try "firefox document.pdf".
 
Old 07-08-2020, 03:43 PM   #9
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by stf92 View Post
In the 14.2 installer there is not a KDE series. There is a window where KDE and Xfce are options, and I always chose Xfce only and had no problems running okular. The morals is I would be better off with 14.2, I think. Is there a 32-bit slackware current?
There is definitely a kde/ series in 14.2 (which has existed in Slackware since 8.1, and before that, it was kde1/ series in 7.0 and was moved to its own folder all the way back in 1999).

The window you mention is where to select the default WM/DE and can be accessed again by running xwmconfig, but the area to select kde was at a previous point in the installer.

Either install the whole kde/ series (slackpkg install kde, if you have the space) or use one of the other pdf readers like xpdf as Didier mentioned.
 
Old 07-08-2020, 03:59 PM   #10
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Quote:
Originally Posted by average_user View Post
IMO you shouldn't rely on 32-bit software these days. There many 64-bit pdf readers available and many of them are also open source in contrary to Adobe Acrobat Reader: evince, zathura, okular are the first that come to my mind.
But Acrobat Reader is the best of all. Example: there is in less the option --window=n, that changes the default scrolling window size to n lines. In Acrobat you can do the same. In Okular, one of the most praised readers, you can't. There are many files made with old PDF versions. And these files I could read them with Acrobat.
 
Old 07-08-2020, 05:36 PM   #11
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by stf92 View Post
But Acrobat Reader is the best of all. Example: there is in less the option --window=n, that changes the default scrolling window size to n lines. In Acrobat you can do the same. In Okular, one of the most praised readers, you can't. There are many files made with old PDF versions. And these files I could read them with Acrobat.
It may be the best for you, but Adobe hasn't released a 64bit version. That means you'd need to either install the 32bit version of Slackware or add multilib to your system.

I actually hate Adobe Acrobat at work. We're forced to use it and it is a clunky and slow software. When I need to search through a several hundred page PDF, it locks up for 30 seconds or longer while it does its search. I use Sumatra PDF on my Windows computer at home and it is extremely fast and efficient.

Half the time at work, I'll load PDFs into Chrome since Adobe is so slow.
 
Old 07-08-2020, 06:02 PM   #12
average_user
Member
 
Registered: Dec 2010
Location: Warsaw, Poland
Distribution: Slackware
Posts: 560

Rep: Reputation: 220Reputation: 220Reputation: 220
Quote:
Originally Posted by stf92 View Post
But Acrobat Reader is the best of all. Example: there is in less the option --window=n, that changes the default scrolling window size to n lines. In Acrobat you can do the same. In Okular, one of the most praised readers, you can't.
If you really need Acrobat Reader features you can install it from Slackbuilds but in order to run it on the 64-bit systems you have to install multilib https://docs.slackware.com/slackware:multilib first. I have it installed because I needed it to fill in some government interactive PDF form, see the attached screenshot.

Quote:
Originally Posted by stf92 View Post
There are many files made with old PDF versions. And these files I could read them with Acrobat.
Do you mean that you've come across regular PDF files (non-encrypted and without interactive forms and stuff) that could only be read by Acrobat Reader?
Attached Thumbnails
Click image for larger version

Name:	2020-07-09-005753_1920x1200_scrot.png
Views:	29
Size:	126.5 KB
ID:	33607  
 
Old 07-08-2020, 06:09 PM   #13
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
No. If a version of Acrobat Reader was released on, say March 2011, and the file PDF version is posterior, say June 2015, then the program won't be able to load it. It's merely a matter of compatibility.

Last edited by stf92; 07-08-2020 at 06:10 PM.
 
Old 07-08-2020, 06:27 PM   #14
average_user
Member
 
Registered: Dec 2010
Location: Warsaw, Poland
Distribution: Slackware
Posts: 560

Rep: Reputation: 220Reputation: 220Reputation: 220
OK, I see. Well, you have to check if the feature you need is available in some alternative maintained PDF viewer you can install on Slackware 64-bit system and if it's not you can either contribute the code that implements it or change your workflow (it can be hard, I know).

Can you explain how to use that --window-like feature you mentioned in Acrobat 9?

Last edited by average_user; 07-08-2020 at 06:29 PM.
 
Old 07-08-2020, 06:30 PM   #15
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
I don't remember and I don't have windows installed. I've seen, in Google, pages explaining how to install Adobe Acrobat Reader in Ubuntu.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Firefox newcomer: can't directly send a PDF file coming throu my internet connection to disk. Instead, first a PDF reader is run. stf92 Slackware 2 08-28-2017 12:28 AM
PDF Reader that will open PDF's created with lastest versions of Adobe? enine Slackware 22 08-09-2016 07:49 PM
LXer: Listen to your books (ePUB or PDF) with Okular, KDE's PDF Reader LXer Syndicated Linux News 0 06-22-2012 06:30 AM
Slim free PDF Reader as alternative to Adobe Reader cccc Debian 6 10-14-2010 02:51 PM
Foxit PDF Reader 1.3: A Nice PDF Viewer Cinematography Linux - Software 6 05-03-2005 04:36 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:25 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration