How to install the real Firefox on Debian?

557,435

Solution 1

First, you need to remove the existing Iceweasel package (I think you can use aptitude as well):

apt-get remove iceweasel

Then, download the latest Linux build of Firefox directly from Mozilla. Extract the files, and navigate to that folder, and run it. If you want, make an icon on your desktop, and you can also make a link to the binary in /usr/bin/firefox to make it easier to launch. If you have root access, you can also install Firefox in /usr/local so all users will be able to run it.

After this, double-check that automatic updates are enabled, and you should be up and running!


If you want a package-based one, you can use Linux Mint's Debian package repo (as noted in the comments below, be aware that this may cause conflicts with automatic updates and other Debian packages in some cases). To do this, add the following line to your /etc/apt/sources.list file:

deb http://packages.linuxmint.com debian import

And add the GPG key for that repo. Then, just run:

apt-get update
apt-get install firefox

And you should be good to go!

The default install is German, to install in any other language, you can manually run:

apt-get install firefox-l10n-en-us 

(Edit[11/26/2014]: This package no longer appears in the linux mint repository.)
(Edit[11/26/2014]: apt-get install firefox-l10n-en-gb - This is the only working English package)

Packages names for other common langages include (official repository list - scroll half way down):

 firefox-l10n-en-gb       # British English
 firefox-l10n-es          # Spanish
 firefox-l10n-fr          # French
 firefox-l10n-de          # German

Solution 2

There's a sourcefourge project, basically dedicated to allowing you to get the latest version of Firefox when running Ubuntu, no matter which version you run (as long as dependencies are satisfied, obviously). Since Ubuntu is a Debian derivative, I thought I'd try it. I've got Firefox working on Debian Testing ("Wheezy") just fine.

Run this:

apt-get remove iceweasel
echo -e "\ndeb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main" | tee -a /etc/apt/sources.list > /dev/null
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com C1289A29
apt-get update
apt-get install firefox-mozilla-build

This resolves the GPG key issue that is encountered when using the imported Linux Mint DE repository, and is significantly simpler than the other viable solution. Also, this gives you access to Thunderbird and SeaMonkey as well.

Note that this solution only gives you the English-US Release Channel version (no beta or Aurora builds). Other languages can be used, but additional steps are required.

See the project page at Ubuntuzilla for more information.

Solution 3

This post on the Debian User forums suggests the following:

  • Download latest Firefox from: http://www.mozilla.com . If using wget, remember to escape any & with \ so it doesn't break the url down into a series of background process
  • Copy the downloaded file to /opt
  • Extract it using:

    $ tar -jxvf firefox-x.x.xx.tar.bz2
    
  • Change the permissions of the file:

    $ chown -R root:users /opt/firefox
    
    $ chmod 750 /opt/firefox
    

    Note that the user should be a group member of "users"

    $ usermod -a -G users username
    
  • Create a symbolic link

    $ ln -s /opt/firefox/firefox /usr/bin/firefox
    
  • Delete firefox-x.x.xx.tar.bz2 from /opt

To install new versions, you are supposed to

# rm -rf /opt/firefox*
# rm /usr/bin/firefox

To make a desktop icon, do this

$ touch /usr/share/applications/firefox.desktop

Edit this using your favourite text editor:

$ nano /usr/share/applications/firefox.desktop

Contents of firefox.desktop:

[Desktop Entry]
Encoding=UTF-8
Name=Mozilla Firefox
Comment=Browse the World Wide Web
Type=Application
Terminal=false
Exec=/usr/bin/firefox %U
Icon=/opt/firefox/icons/mozicon128.png
StartupNotify=true
Categories=Network;WebBrowser;

You can remove iceweasel with

$ apt-get remove iceweasel

If you encounter this error:

./firefox: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory

You should probably install

apt-get install ia32-libs ia32-libs-gtk

Chances are that you are trying to install the 32 bit version of firefox in a 64 bit Debian environment.

Solution 4

Iceweasel Aurora is very close to Firefox latest stable release.

I installed Iceweasel Aurora using this official debian/mozilla tutorial.

I was able to import my Firefox profile from another installation without errors, ie, all addons, bookmarks, history entries and user settings are working perfectly.

FYI, some of the plugins I use are Firebug, Awesome screenshot and Searchstatus, all worked fine and were not disabled by Iceweasel.

You may also want to use the Firefox logo for launchers.

This is probably a better option as it allows an easier update process.

Solution 5

No need for this any more. Debian stable started shipping Firefox instead of iceweasel today.

Debian will ship the Extended Support Release (ESR) of Firefox, which is roughly updated every 9 months. If you always need the latest version the others answers may stil be an option for you.

For more infomarmation see the debian bug report

Share:
557,435

Related videos on Youtube

kravemir
Author by

kravemir

Just a software developer,..

Updated on September 18, 2022

Comments

  • kravemir
    kravemir over 1 year

    Debian 6 ("Squeeze") uses a rebranded version of Firefox called Iceweasel. It, however, lacks plugin support, and most of my favorites don't work.

    So what is best way to install the "real" Firefox on Debian?

  • Simon Sheehan
    Simon Sheehan over 12 years
    Definitely easier than what I suggested.
  • slhck
    slhck over 12 years
    Bah, got no notification that you were writing -- beat me to it :P
  • kravemir
    kravemir over 12 years
    What about GPG signature of that repository?
  • Leo
    Leo almost 12 years
    Done that. It's Dutch language version- any ideas how to make it English?
  • Breakthrough
    Breakthrough over 11 years
    @nodiscc that's the default repository included with Debian to begin with... If you look at the linked repository in that answer, it only has Iceweasel, not Firefox (as the OP requested). If you are really against using another popular Linux distribution's repository, you might want to consider adding the Daily-Built Ubuntu Firefox/Thunderbird PPA.
  • Edward J Beckett
    Edward J Beckett over 11 years
    This really is a testament to the beauty of Debian ... there's many ways to tweak your build ... I ♥ Debian ... ;-)
  • Simon Sheehan
    Simon Sheehan over 11 years
    Might want to just get rid of the version number - it changes so fast now.
  • Alois Mahdal
    Alois Mahdal about 11 years
    Ad GPG: downloading and manually (dpkg -i) installing linuxmint-keyring_*.deb from Mint's repo (before installing any package from actual repo) worked for me (Wheezy).
  • Alois Mahdal
    Alois Mahdal about 11 years
    sudo rm -R firefox* seems quite dangerous, what if you had other firefox* folders in /opt?
  • Yordan Pavlov
    Yordan Pavlov almost 11 years
    Works like charm!
  • jaorizabal
    jaorizabal over 10 years
    i did all the steps but i have no permission of open firefox. any ideas?
  • Justin Sane
    Justin Sane over 10 years
    For those missing the icon, google "mozicon128.png" and save it as /usr/share/pixmaps/firefox.png
  • Alois Mahdal
    Alois Mahdal over 10 years
    @JustinSane The icon can be also found somewhere under /opt/firefox, so you can simply copy it ... or fix all .desktop files to point to the /opt/... path (in case you don't have permissions).
  • miguel
    miguel about 10 years
    # ln -s /opt/firefox/firefox /usr/bin/firefox ln: failed to create symbolic link `/usr/bin/firefox': File exists
  • miguel
    miguel about 10 years
    Turns out debian put a shell script at /usr/bin/firefox that executes iceweasel. Dick move.
  • Simon Sheehan
    Simon Sheehan about 10 years
    @miguel This post is very old, not sure how valid it is still
  • orezvani
    orezvani almost 10 years
    I never recommend this solution. In fact adding such repository (although it is based on the same distro) can cause conflict in dependencies. This method works for installing and updating firefox, but it does make some conflicts with other packages. If you need the firefox, you just get the code and extract it in your /opt/ and create a global link to it.
  • techie_28
    techie_28 over 9 years
    @Breakthrough How to subsequently update this install?I tried to install to FF33.0 from FF30.0 and lost my installed addons.
  • mimoralea
    mimoralea over 9 years
    Two updates! First... ln -sf /opt/firefox/firefox /usr/bin/firefox # force the symlink ... The other is the icon path on the firefox.desktop is now in another location: ls /opt/firefox/browser/icons/mozicon128.png
  • TrueY
    TrueY over 9 years
    +1 for the --keyserver stuff! Actually iceweasel not needed to be removed. I was afraid that the settings and saved passwords would be lost, so I kept iceweasel.
  • Dr.jacky
    Dr.jacky almost 9 years
    E: Package 'firefox' has no installation candidate
  • DrBeco
    DrBeco almost 9 years
    Be aware! (forums.debian.net/viewtopic.php?f=5&t=119719) Don't mix Debian with Mint.
  • Garrett Fogerlie
    Garrett Fogerlie over 8 years
    +1 Thanks! @TrueY Iceweasel works even with FireFox installed? I had already uninstalled iceweasel and when I try to install it (in Kali 2.0,) I get an error that it clashes with firefox: diversion of /usr/bin/firefox to /usr/bin/firefox.real by iceweasel' clashes with diversion of /usr/bin/firefox to /usr/bin/firefox.ubuntu by firefox-mozilla-build` I wonder if I hadn't uninstalled it, if they would have played well together?
  • TrueY
    TrueY over 8 years
    @GarrettFogerlie I think they cannot run parallel. I had a Firefox running and I tried to start Iceweasel and I got a message box with the following text: "Iceweasel is already running, but is not responding. To open a new window, you must first close the existing Iceweasel process, or restart your system."
  • fixer1234
    fixer1234 about 8 years
    This looks like a duplicate of Manuel Garza's answer.
  • Rick Lell
    Rick Lell about 8 years
    You're right. I found Ubuntuzilla as I was seeking an answer myself. I didn't see Manuel Garza's answer above, though I wish I had, as this would have saved me some time. Iceweasle isn't playing html5 video and this is how I fixed it. I love Debian, so actually switching to Ubuntu isn't an option. Thanks for the heads up as to being a duplicate.
  • m3nda
    m3nda about 8 years
    @emab That's what I did, it's easier than track packages. I don't know if the libraries involved are from debian repos or mint ones... this detail is the key. Arguing that every other package will be found on original repos, you can add it, install firefox then remove the ppa later. Otherwise the best option is to use /opt.
  • m3nda
    m3nda about 8 years
    @Dr Mint is built from Ubuntu, and Ubuntu from Debian. It's really a bad idea to mix them :D
  • fixer1234
    fixer1234 about 8 years
    This is no longer necessary. Iceweasel has been discontinued and Firefox is now what is provided by Debian. Iceweasel ESR was associated with Debian Stable, and that will disappear when the old ESR version is deprecated shortly. In the meantime, Firefox is available in Jessie via backport.
  • fixer1234
    fixer1234 almost 8 years
    Just FYI, Iceweasel wasn't renamed to Firefox, as premised in the link. Iceweasel was a sanitized, rebranded version of Firefox. The Iceweasel project was discontinued and now actual Firefox is what is distributed with Debian. If Jessie still has Iceweasel ESR, that will be gone as soon as the ESR version is deprecated. Debian stable (currently Jessie), will have Firefox ESR. This has a major release roughly once/year, with security updates but not feature changes in between. Debian Testing should already have standard, current-release Firefox
  • Somaiah Kumbera
    Somaiah Kumbera over 7 years
    Cleanest way to get it right from the source. +1 for the key
  • Pierre de LESPINAY
    Pierre de LESPINAY about 6 years
    Pretty straightforward
  • honi
    honi about 6 years
    beautiful! works from the command line with no customization.
  • Naveen Dennis
    Naveen Dennis almost 6 years
    No longer works!