LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 05-28-2020, 03:43 PM   #1
foyle
LQ Newbie
 
Registered: May 2020
Posts: 5

Rep: Reputation: Disabled
Installing Firefox


Hello everybody, I use Linux every day but I am just a common user with a problem: on my Debian 9 run laptop I have Firefox 68.8 esr 64 bit, and so far I am unable to install a new version of Firefox, but non-esr. I have downloaded the tar file and run the usual commands tar xjf... but nothing happened, just like if I had done nothing. So I asked for help in a linux forum, and the guys there told me two things:I could download Firefox as snap package(first time I heard of it),with the link provided I downloaded Firefox , run the commands, but at a certain moment I got the news that the installation was impossible because "core 18" was missing. The other thing the guys told me was to install Firefox from flatpak, and it was almost the same story: after some minutes I got the message that Firefox could not be installed because it needed a more recent version of flatpak.
So, back to square one, I am stuck on Firefox esr but I would like to change to Firefox 71 or 72. Can someone help me? Thanks from foyle, the poor linux user.
 
Old 05-28-2020, 03:46 PM   #2
timl
Member
 
Registered: Jan 2009
Location: Sydney, Australia
Distribution: Fedora,CentOS
Posts: 750

Rep: Reputation: 156Reputation: 156
I think the tar command you used will just have extracted files from the tar ball. It probably created a directory you need to drop down to. In the directory there is likely to be a readme containing instructions how to build/make the binary
 
Old 05-28-2020, 04:20 PM   #3
petelq
Member
 
Registered: Aug 2008
Location: Yorkshire
Distribution: openSUSE(Leap and Tumbleweed) and a (not so) regularly changing third and fourth
Posts: 627

Rep: Reputation: Disabled
Once you've extracted the files they should be in a folder "firefox". It depends on where you extracted them. The folder could be in your "home" folder. If it is it will have sub-folder called "program" and in there there'll be an executable "firefox".
Create a symlink to that executable either in your ~/bin folder or in /usr/bin. Then you can run firefox by typing firefox in a terminal or creating a desktop file to run it. You can copy the format of any desktop file by changing the appropriate detail.

Symlink
Code:
ln -s <path to>/firefox/program/firefox /usr/bin/firefox
Just to be sure, I'm assuming you downloaded the tarball from mozilla.

Last edited by petelq; 05-28-2020 at 04:24 PM.
 
1 members found this post helpful.
Old 05-28-2020, 04:37 PM   #4
scasey
LQ Veteran
 
Registered: Feb 2013
Location: Tucson, AZ, USA
Distribution: CentOS 7.9.2009
Posts: 5,732

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
Download the latest version from mozilla.com (firefox-76.0.1.tar.bz2)
untar the tarfile
mv the resulting directory (firefox) to a useful place: /usr/sbin for access by all users, perhaps, or a directory under $HOME for a single user. I have it in $HOME/bin - but I'm the only user on this desktop.
run the file named firefox within the firefox directory.
Create a desktop icon or panel launcher with the path to the executable ($HOME/bin/firefox/firefox %u) on this box)

There is nothing to make. The mozilla tarfile is a precompiled binary package.

EDIT: petelq: I just pulled that tarfile down. firefox is in the firefox directory...there is no program directory. Otherwise what you posted is correct.
Also, note that once installed, firefox can be configured to update itself automatically...I don't recall if that's the default or not. I originally installed ver 66. It's currently at ver 76

Last edited by scasey; 05-28-2020 at 04:42 PM.
 
1 members found this post helpful.
Old 05-28-2020, 05:11 PM   #5
ehartman
Senior Member
 
Registered: Jul 2007
Location: Delft, The Netherlands
Distribution: Slackware
Posts: 1,674

Rep: Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888
Quote:
Originally Posted by foyle View Post
I have Firefox 68.8 esr 64 bit, and so far I am unable to install a new version of Firefox, but non-esr.
68.8 is the very newest ESR version available and probably your distro doesn't offer any newer (non-ESR) ones (because non-ESR) releases do not live all that long).
As for security and bugfixes it is equivalent with Firefox 76 (68 + 8).

Quote:
I would like to change to Firefox 71 or 72. Can someone help me? Thanks from foyle, the poor linux user.
Those are old and out of support already. As I mentioned above, 76 is the latest non-ESR version and they live about 2 to 3 months only.
As soon as 77 will be released there will be a 68.9ESR one too.
 
1 members found this post helpful.
Old 05-28-2020, 05:14 PM   #6
ehartman
Senior Member
 
Registered: Jul 2007
Location: Delft, The Netherlands
Distribution: Slackware
Posts: 1,674

Rep: Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888
Quote:
Originally Posted by scasey View Post
Also, note that once installed, firefox can be configured to update itself automatically...
Only if you install it in a user accessable directory (like your home dir).
A user-mode firefox cannot update itself when it's located in a system dir, like /usr/firefox or such. As the normal distro package is in a system dir it can only be updated by that distro's package tools (as root or through sudo).
 
3 members found this post helpful.
Old 05-28-2020, 05:19 PM   #7
foyle
LQ Newbie
 
Registered: May 2020
Posts: 5

Original Poster
Rep: Reputation: Disabled
Talking Done!

Thank you guys, it is almost unbelievable(I am NOT exaggerating): after minutes, almost hours of unuseful attempts...I opened the firefox folder as one of you told me to do,and there was a purple/purplish icon, named Firefox, I click on that, it appeared "run" on th screen, and it happened, goddness me, the browser opened its reddish furry loveable face in front of me, and automatically updated itself, then I restarted. Just that and only that. It needed, just from the beginnig, nothing else than a stupid click on an icon, nothing else, still I don't believe it. Probably I have bothered you all for NOTHING. Thank you all, anywayhttps://www.linuxquestions.org/questions/images/icons_lq/icon10.gif
 
Old 05-28-2020, 05:45 PM   #8
scasey
LQ Veteran
 
Registered: Feb 2013
Location: Tucson, AZ, USA
Distribution: CentOS 7.9.2009
Posts: 5,732

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
ehartman: Excellent information. Learning happening (again). Good point about the auto-update feature.

When I installed the non-ESR version it was because I perceived a difference between the ESR version and the latest on my Windows boxes. I suppose there is a short lag for the ESR releases, given that they are "routed" through the distributions repositories, but I think I was mostly comparing the version numbers, not knowing of the relationship between the 68.x versions and the 7x versions.

So my understanding of what you've said is that the OP already has the latest and greatest and need not fool around with changing to the other 7x series. Yes?
 
Old 05-28-2020, 05:57 PM   #9
ehartman
Senior Member
 
Registered: Jul 2007
Location: Delft, The Netherlands
Distribution: Slackware
Posts: 1,674

Rep: Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888
Quote:
Originally Posted by scasey View Post
When I installed the non-ESR version it was because I perceived a difference between the ESR version and the latest on my Windows boxes.
The ESR versions do lack the newer features (and their new bugs <grin>) introduced in versions 69 and later. Pure bugfixes and security patches are backported by the mozilla team TO the ESR release. Compare dates of release:
Quote:
firefox-76.0.tar.bz2 64M 04-May-2020 13:20
firefox-68.8.0esr.tar.bz2 62M 04-May-2020 13:21
(taken from archive.mozilla.org/pub/firefox/releases)

So it's mozilla itself that releases both versions, the distro only decides which one they want to include.

PS: there is an ESR version for Windows too:
Quote:
Firefox Setup 68.8.0esr.exe 46M 04-May-2020 13:23
Firefox Setup 68.8.0esr.msi 46M 04-May-2020 13:23
The current ESR is getting "long in the tooth", so probably mozilla will release a higher numbered ESR version soon, maybe even 77.0
 
Old 05-29-2020, 02:00 AM   #10
petelq
Member
 
Registered: Aug 2008
Location: Yorkshire
Distribution: openSUSE(Leap and Tumbleweed) and a (not so) regularly changing third and fourth
Posts: 627

Rep: Reputation: Disabled
Quote:
Originally Posted by scasey View Post
EDIT: petelq: I just pulled that tarfile down. firefox is in the firefox directory...there is no program directory. Otherwise what you posted is correct.
Thanks. You're right of course but I was doing it from memory and I'm not as young as I once was!
 
Old 06-05-2020, 03:55 AM   #11
ehartman
Senior Member
 
Registered: Jul 2007
Location: Delft, The Netherlands
Distribution: Slackware
Posts: 1,674

Rep: Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888Reputation: 888
Quote:
Originally Posted by ehartman View Post
The current ESR is getting "long in the tooth", so probably mozilla will release a higher numbered ESR version soon, maybe even 77.0
Not yet:
firefox 77.0 and 68.9ESR have been released without a sign yet of a newer ESR release:
Code:
firefox-77.0.1.tar.bz2 	   65M 	03-Jun-2020 03:11
firefox-68.9.0esr.tar.bz2  61M 	01-Jun-2020 12:56
and, as you can see, 77 even already had a bug-fix minor update to 77.0.1
And there are the first 78.0 beta releases out (up to b3) too.

PS: the difference between ESR and "normal" versions used to exist in thunderbird too, but nowadays they only release the ESR ones, the normal versions never get any further than beta, so the newest versions here are 68.9 (which isn't called ESR anymore) and 77.0b3

Last edited by ehartman; 06-05-2020 at 03:56 AM.
 
Old 06-05-2020, 04:33 AM   #12
sxy
Member
 
Registered: Aug 2019
Posts: 43

Rep: Reputation: Disabled
I gave firefox 76 a try yesterday. It handles HiDPI scaling much better than esr68 (there's no need to force the DPI scaling in the 'about:config' page anymore). Seems like the next ESR will carry version number 78, and is coming soon (edit: 2020-06-30).

ESR Landing Process
Firefox Release Calendar

Last edited by sxy; 06-05-2020 at 04:37 AM.
 
  


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
Downloading Firefox, or burning a CD & installing Firefox from the CD drmjh Linux - General 4 01-04-2012 07:21 PM
LXer: Firefox 9 Is 30% Faster Than Firefox 8 | Install Firefox 9 On Ubuntu 11.10 and Earlier Release LXer Syndicated Linux News 0 12-30-2011 03:50 PM
LXer: Firefox 8 is 20% Faster than Firefox 5, Install Firefox 8 in Ubuntu via PPA LXer Syndicated Linux News 0 07-21-2011 09:31 PM
How do i make firefox 3 work after installing firefox 2 on Ubuntu 8.04 avinash.rao Ubuntu 10 09-06-2008 10:34 AM
Removing Firefox 1.0.6 and installing Firefox 1.5 JockVSJock Slackware 12 12-16-2005 01:09 AM

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

All times are GMT -5. The time now is 06:10 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