LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-09-2019, 04:36 PM   #1
Sabinus
LQ Newbie
 
Registered: Feb 2019
Posts: 9

Rep: Reputation: Disabled
Unhappy Installing Adobe reader


Hi all, I am a total newbie.
This is my first day ever using Linux. I am up and running with Linux Mint 19.1 installation but I need to install Adobe Reader. The trouble is, I do not know and do not have the commands to enter at the Terminal in order to do this. Could someone please write out the codes for me and how to enter them.

I will really appreciate this.

Thanks

Sabinus
 
Old 02-09-2019, 05:02 PM   #2
Corvette
Member
 
Registered: Jul 2017
Location: Missouri, United States
Distribution: Debian 9
Posts: 110

Rep: Reputation: 24
Do you mean the standalone desktop app or the browser add-on? If the former, Adobe Reader does not run on Linux normally. You could try Wine (which can be used to run some Windows apps on Linux_, but if you are new to Linux, this might not be ideal. Besides, I am not sure how well Adode Reader runs with Wine anyway. You might consider an alternative PDF reader; I like Okular myself.

Last edited by Corvette; 02-09-2019 at 05:04 PM.
 
Old 02-09-2019, 05:09 PM   #3
Brains
Senior Member
 
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591

Rep: Reputation: 389Reputation: 389Reputation: 389Reputation: 389
Mint 19 should have installed Synaptic package manager by default, open this app and use the search with different keywords. As mentioned above, through Synaptic, you can right click on Xpdf or Okular and select install, there may be other PDF readers but I second Okular.
 
1 members found this post helpful.
Old 02-09-2019, 05:26 PM   #4
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Quote:
Originally Posted by Corvette View Post
Do you mean the standalone desktop app or the browser add-on? If the former, Adobe Reader does not run on Linux normally. You could try Wine (which can be used to run some Windows apps on Linux_, but if you are new to Linux, this might not be ideal. Besides, I am not sure how well Adode Reader runs with Wine anyway. You might consider an alternative PDF reader; I like Okular myself.
It is getting old, but there is a Linux version of Adobe-Reader-9.5.5.1.
I use it almost daily.

Last edited by cwizardone; 02-11-2019 at 10:00 AM. Reason: Typo.
 
1 members found this post helpful.
Old 02-09-2019, 05:31 PM   #5
Corvette
Member
 
Registered: Jul 2017
Location: Missouri, United States
Distribution: Debian 9
Posts: 110

Rep: Reputation: 24
That is nice piece of information cwizardone; I had no idea. Thanks for the note! Just a caution to the original poster though, I would be wary regarding the security implication of an unsupported version of Adobe Reader. I am not sure if it is different with the *nix versions, but I know vulnerabilities abound in Adobe Reader.
 
1 members found this post helpful.
Old 02-09-2019, 05:42 PM   #6
Brains
Senior Member
 
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591

Rep: Reputation: 389Reputation: 389Reputation: 389Reputation: 389
Quote:
Originally Posted by cwizardone View Post
it is getting old, but there is Linux version of Adobe-Reader-9.5.5.1.
I use it almost daily.
It's not available through standard Mint repositories, that was the keyword I used in a Synaptic search and found Xpdf
 
Old 02-09-2019, 05:44 PM   #7
Sabinus
LQ Newbie
 
Registered: Feb 2019
Posts: 9

Original Poster
Rep: Reputation: Disabled
Lightbulb Very helpful

Quote:
Originally Posted by Brains View Post
Mint 19 should have installed Synaptic package manager by default, open this app and use the search with different keywords. As mentioned above, through Synaptic, you can right click on Xpdf or Okular and select install, there may be other PDF readers but I second Okular.
Thanks a lot. your response has really helped me as I have followed your instructions and downloaded Xpdf. I have also tried it and i can confirm that it is able to open PDf files.
Thanks again
 
Old 02-09-2019, 05:48 PM   #8
Sabinus
LQ Newbie
 
Registered: Feb 2019
Posts: 9

Original Poster
Rep: Reputation: Disabled
Very helpful

Quote:
Originally Posted by cwizardone View Post
it is getting old, but there is Linux version of Adobe-Reader-9.5.5.1.
I use it almost daily.
Thanks for your rapid response. I have been able to download Xpdf and it is working ok. Thanks again and this makes me feel welcome to this community.
Sabinus
 
1 members found this post helpful.
Old 02-11-2019, 06:53 AM   #9
tyler2016
Member
 
Registered: Sep 2018
Distribution: Debian, CentOS, FreeBSD
Posts: 243

Rep: Reputation: Disabled
Xpdf works, but isn't my favorite. There are several decent PDF viewers. I use evince. A quick apt-cache search on my Debian Stretch machine gives me:
  • qpdfview
  • pdfcube
  • atril
  • gv
  • katarakt
  • mupdf
  • okular

Whenever you want an application that does X on a Debian based Linux box such as Mint or Ubuntu, open a terminal and type:

Code:
$ apt-cache search "pdf viewer" | less
If you want to install one of them, use apt install:

Code:
$ sudo apt install PROGRAM_NAME
If you want to install okular, you would do this:

Code:
$ sudo apt install okular
When it is done, it should appear in the menus of your Desktop Environment or window manager. If it doesn't, try something like this:

Code:
$ dpkg -L evince | grep bin/
/usr/bin/evince
/usr/bin/evince-previewer
/usr/bin/evince-thumbnailer
$ /usr/bin/evince

Last edited by tyler2016; 02-11-2019 at 06:54 AM.
 
1 members found this post helpful.
Old 02-11-2019, 09:37 AM   #10
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Quote:
Originally Posted by Sabinus View Post
Thanks for your rapid response. I have been able to download Xpdf and it is working ok. Thanks again and this makes me feel welcome to this community.
Sabinus
You are welcome.

As an alternative to Adobe Reader, I occasionally use Okular (KDE). I'm not a big fan of KDE5, but have loaded just what is needed from KDE5 so Okular will run on my Xfce desktop.
 
1 members found this post helpful.
Old 02-14-2019, 08:43 PM   #11
Sabinus
LQ Newbie
 
Registered: Feb 2019
Posts: 9

Original Poster
Rep: Reputation: Disabled
Very informative and educative

Quote:
Originally Posted by tyler2016 View Post
Xpdf works, but isn't my favorite. There are several decent PDF viewers. I use evince. A quick apt-cache search on my Debian Stretch machine gives me:
  • qpdfview
  • pdfcube
  • atril
  • gv
  • katarakt
  • mupdf
  • okular

Whenever you want an application that does X on a Debian based Linux box such as Mint or Ubuntu, open a terminal and type:

Code:
$ apt-cache search "pdf viewer" | less
If you want to install one of them, use apt install:

Code:
$ sudo apt install PROGRAM_NAME
If you want to install okular, you would do this:

Code:
$ sudo apt install okular
When it is done, it should appear in the menus of your Desktop Environment or window manager. If it doesn't, try something like this:

Code:
$ dpkg -L evince | grep bin/
/usr/bin/evince
/usr/bin/evince-previewer
/usr/bin/evince-thumbnailer
$ /usr/bin/evince
I found your response very helpful. Following yours and other responses, I have been able to download and install of Okular and Xpdf. Thanks again.
 
Old 02-14-2019, 09:19 PM   #12
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
LibreOffice Draw, part of the LibreOffice Office Suite, will also display and allow one to digitally sign .pdf files. However, it is s-l-o-w.


https://www.libreoffice.org/

Last edited by cwizardone; 02-14-2019 at 09:21 PM.
 
  


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
LXer: Adobe’s e-book reader sends your reading logs back to Adobe—in plain text LXer Syndicated Linux News 0 10-12-2014 08:41 AM
LXer: Adobe’s e-book reader sends your reading logs back to Adobe—in plain text LXer Syndicated Linux News 0 10-10-2014 10:00 PM
Dear Honeyhooker can run Adobe Photoshop and Adobe Reader,is that possible llmi187 Linux - Software 4 01-30-2012 04:46 AM
[SOLVED] Removing Adobe Acrobat Reader installed from Adobe's binary jrdioko Linux - Software 5 05-07-2011 08:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:01 AM.

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