16

Ubuntu 14.04 LTS 64bit

I recently came to know that FoxitReader Ubuntu version has been released. But I am unable to install it using the instructions given in its manual(check this link).

When I enter this command:sudo dpkg -i FoxitReader_1.1.0_i386.deb, I get the following:

(Reading database ... 341123 files and directories currently installed.)
Preparing to unpack FoxitReader_1.1.0_i386.deb ...
Unpacking foxitreader (1.1-0) over (1.1-0) ...
Setting up foxitreader (1.1-0) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for bamfdaemon (0.5.1+14.04.20140409-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.54ubuntu1.1) ...

Please help me to install it if someone has done it successfully.

Sooraj Soman
  • 1,111

3 Answers3

32

September 15, 2015,Foxit Reader is now available for Ubuntu ,

1.Go to official site foxitsoftware.com/products/pdf-reader

Click on download button and select Linux (either 32 or 64 bit)

Imgur

Imgur

Now Open terminal and run the following commands:

cd ~/Downloads
ls    
tar -xzvf FoxitReader1.00.0909_Server_x64_enu_Setup.run.tar.gz
chmod +x FoxitReader.enu.setup.1.0.0.0909.run
./FoxitReader.enu.setup.1.0.0.0909.run

Note While running chmod command I got syntax error near unexpected token `(' error.I re-named the extracted file then executed the command.

Imgur

Imgur

Imgur

(All screen-shots are from my system @Ravan )

Ravan
  • 9,567
3

Here is what I've used to install it on my 64bit system.

To install FoxitReader on Ubuntu 64bit, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-get install gtk2-engines-murrine:i386 libcanberra-gtk-module:i386 libcanberra-gtk0:i386 libgtk2.0-0:i386 libstdc++6:i386
sudo dpkg --add-architecture i386
sudo apt-get update
wget http://cdn02.foxitsoftware.com/pub/foxit/reader/desktop/linux/1.x/1.1/enu/FoxitReader_1.1.0_i386.deb
sudo dpkg -i FoxitReader_1.1.0_i386.deb

I'm running Xubuntu, and it shows in the menu. See image below.

enter image description here

Here it is on Ubuntu 14.04

enter image description here

Source for the commands:LinuxG

Mitch
  • 109,787
0

I just extracted to my Downloads file, renamed the file to Foxit.run and performed the commands below:

sudo apt update

sudo apt clean

sudo apt autoremove

cd /home/<my_user_name>/Downloads

Then I ran it:

./Foxit.run

and install proceeded flawlessly.

much simpler.

Pizza
  • 1,512