Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,638
Rep:
Adobe Acrobat installation
I have downloaded the Adobe Acrobat Reader for Linux. I have some difficulties opening the
downloaded linux-509.tar.gz file. I am using Mandarake Linux 10.0 version and it works fine.
Could you help me please?
1. I created a folder called '' Adobe Acrobat reader for Linux "". Afterwards I downloaded the file to that folder.
2. I successfully opened with the '' tar -xvpz linux-509.tar.gz file '' command.
You will clearly notice it in the following:
-----------------------------------------------------------------------------------------------------------------
[nissanka@h134n2fls301o1037 Adobe Acrobat Reader for Linux]$ tar -xvpzf linux-509.tar.gz
./
./COMMON.TAR
./INSTALL
./README
./LICREAD.TXT
./LINUXRDR.TAR
./MANIFEST
[nissanka@h134n2fls301o1037 Adobe Acrobat Reader for Linux]$ ./INSTALL
ERROR: No configurations found ... aborting
----------------------------------------------------------------------------------------------------
As you notice the expansion of the downloaded file was successful.
So I wrote the ----> ] $ ./INSTALL
It didn't open. I got an error message. What is the problem? Please help me.
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,638
Original Poster
Rep:
Thanks for the reply.
What is the meaning of this line? -----> rm adobe-reader/ -rf
On top of this I don't use the Mozilla Firefox browser. I use the ordinary Mozilla 1.6 browser. I still can't fathom why you
you inserted the browser related line.
Distribution: Ubuntu, Debian, Various using VMWare
Posts: 2,088
Rep:
su
Become root. You need to be root to install anything to /usr/local. Enter this command, and it will prompt you for you root password.
mv linux-509.tar.gz adobe-linux-509.tar.gz
rename the downloaded file. This step is not really neccessary
mkdir /usr/local/adobe-reader
Make a directory to unzip the downloaded file to. This is a temporary directory, since the files you unzip into it are not needed once acrobat is installed
cp adobe-linux-509.tar.gz /usr/local/adobe-reader/
Copy the tarball to this temporary directory
cd /usr/local/adobe-reader/
Move to the temporary directory
tar -zxvf adobe-linux-509.tar.gz
and unzip the tarball.
./INSTALL
Run the install script. This will install acrobat to /usr/local/Acrobat5.
cd ..
This changes to the parent directory of your current directory. For example, in this case you are in /usr/local/adobe-reader, after executing this command you will be in /usr/local
rm adobe-reader/ -rf
You can now safely remove the temporary directory. The -fr switch is needed to remove a directory, it means to delete the directory and (recursively) delete its subdirectories, without prompting.
cp Acrobat5/Browsers/intellinux/nppdf.so /usr/local/firefox/plugins/
So that you can open pdf files in firefox, you need to add the Acrobat plugin to the firefox plugins directory. If you use Mozilla, replace the firefox directory with the mozilla plugins directory.
cd /usr/bin/
ln -s /usr/local/Acrobat5/bin/acroread .
If you create a symbolic link in /usr/bin, you will be able to launch acrobat by simply typing "acroread" at the command line. (No Quotes)
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,638
Original Poster
Rep:
It was an excellent description by Iball. I take my hat off to you for the description. You have simpy explained it step by step. I have no questions to ask on this. You are great.
When I untar and run the install for 5.09, it tells me the 'No configurations Found' error message and stops.
I managed to find an archive I had of the 5.08 Acrobat, and when I ran tar zxvf on that sucker, and ./INSTALL it showed me the license and installed properly.
I can only assume the problem is with Adobe's 5.09 Acro and not with anything I had done, since I dealt with the two files identically.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.