4

I want to install the 64 bits version of Firefox - Waterfox on Ubuntu 12.04 system. Since the browser is not available in the software center and I was not able to find any examples of installing it I want to know has anyone do this?

Please,provide more installation details since I am Linux user for few weeks only.

Tim
  • 33,500
gotqn
  • 2,077
  • 7
  • 30
  • 38

2 Answers2

3

Waterfox 32 & 64 IS now available for Linux/Ubuntu at https://www.waterfoxproject.org/downloads .

It is available as a compressed archive. I installed it in Linux Mint 18.1 like this:

I d/l'd it to my home, then I right clicked on it and selected "extract here". After which, I opened a console and typed in "sudo tar -jxvf waterfox-50.1.0.en-US.linux-x86_64.tar.bz2 waterfox/" (without the parentheses) .

I then went to my "run an application" launcher and typed in waterfox. Joi`la, she worky. Then I created a desktop launcher for it and moved it to a panel.

Hopes this help ya'.

I had a file simply named "waterfox".

Wesley
  • 81
0

Waterfox is not available for Ubuntu(Linux). To install Waterfox on Ubuntu machine you need Wine package installed.

Wine

Wine is a compatibility layer which allows Windows applications to run on Linux by translating Windows system calls into native Linux calls.

Download the Waterfox installer from here and install it using Wine.

or the alternate way is to install Firefox 64 bit. http://www.firefox64bit.com

Download link for Firefox 64bit OS

Installation steps:

cd /tmp
wget 'http://www.firefox64bit.com/firefox.en-US.linux-x86_64.tar.bz2'

Extract the file to /opt or ~/firefox directory

sudo tar -jxvf firefox.en-US.linux-x86_64.tar.bz2 -C /opt

or

tar -jxvf firefox.en-US.linux-x86_64.tar.bz2 -C ~/firefox
devav2
  • 37,290