LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-25-2018, 03:12 PM   #1
tekra
Member
 
Registered: Aug 2010
Location: Brisbane, Australia
Distribution: Gentoo, Slackware, PCLOS, Debian
Posts: 230
Blog Entries: 2

Rep: Reputation: 50
Is there a 'standalone' version of Firefox?


I'm running Debian 8.2 on an old 32-bit machine and want to upgrade from the ancient Iceweasel. Trying to install the current Deb Firefox requires deleting half the apps.

There used to be statically-compiled (sc. 'standalone') versions available, but I can't see any references on Moz.org - everything's so 'automatic' that there's little detailed info.

Does anyone know if static versions are still available, or of a suitable alternative browser?
 
Old 06-25-2018, 04:58 PM   #2
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,978

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
I'd suspect that you can create a static build. If you have wine you might consider running a portable windows version.

I think there are some static build basic browsers but it may depend on your requirements.

Not sure I get the part about deleting half the apps.

https://www-archive.mozilla.org/build/static-build.html

You might have an ability to run one of the no install programs like snaps or other.

https://www.linuxquestions.org/quest...ux-4175450674/

Last edited by jefro; 06-25-2018 at 05:00 PM.
 
Old 06-25-2018, 05:33 PM   #3
scasey
LQ Veteran
 
Registered: Feb 2013
Location: Tucson, AZ, USA
Distribution: CentOS 7.9.2009
Posts: 5,727

Rep: Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211
My recollection is that I just downloaded the tarball, ran tar -xvf on it, and ran the firefox executable that resulted. There was no compiling or building to do.

I had to do that to get the latest version (which is at 60.0.2). It did not AFAIK overwrite or remove anything.
I extracted to /usr/local...it created a firefox directory there. I then linked from /bin.

I got the tarball here

I'm running CentOS 7.5 with the Cinnamon desktop. The "current" CentOS version isn't...I wanted (and got) latest and greatest, and it now updates from within Firefox.

Last edited by scasey; 06-25-2018 at 05:35 PM.
 
Old 06-25-2018, 05:40 PM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,125

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
Code:
ldd $(which firefox)
	not a dynamic executable
 
Old 06-25-2018, 05:45 PM   #5
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by tekra View Post
I'm running Debian 8.2 on an old 32-bit machine and want to upgrade from the ancient Iceweasel.
that is strange; i recently installed wheezy, when it still received security updates, and was somewhat disappointed to see that it used firefox-esr instead of iceweasel.

do you upgrade the system regularly?
what are your sources?
 
1 members found this post helpful.
Old 06-25-2018, 05:50 PM   #6
scasey
LQ Veteran
 
Registered: Feb 2013
Location: Tucson, AZ, USA
Distribution: CentOS 7.9.2009
Posts: 5,727

Rep: Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211Reputation: 2211
Quote:
Originally Posted by syg00 View Post
Code:
ldd $(which firefox)
	not a dynamic executable
I'm not sure what that means, but on my system:
Code:
ldd $(which firefox)
	linux-vdso.so.1 =>  (0x00007fffa3ba6000)
	libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f7278126000)
	libdl.so.2 => /lib64/libdl.so.2 (0x00007f7277f22000)
	librt.so.1 => /lib64/librt.so.1 (0x00007f7277d19000)
	libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007f7277a11000)
	libm.so.6 => /lib64/libm.so.6 (0x00007f727770f000)
	libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f72774f8000)
	libc.so.6 => /lib64/libc.so.6 (0x00007f7277135000)
	/lib64/ld-linux-x86-64.so.2 (0x000055d846fd8000)
Note again: I did not load from the repositories, as they are at version 52.8.0 (again CentOS, not Debian), but from the posted site. I uninstalled the repo version, then installed the tarball.

Last edited by scasey; 06-25-2018 at 05:53 PM.
 
Old 06-25-2018, 07:01 PM   #7
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,978

Rep: Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624Reputation: 3624
Pretty sure that link JohnVV posted in my last link leads to a compressed folder that can simply be ran on most distro's. Well actually they changed ftp to https.
 
Old 06-26-2018, 01:04 AM   #8
tekra
Member
 
Registered: Aug 2010
Location: Brisbane, Australia
Distribution: Gentoo, Slackware, PCLOS, Debian
Posts: 230

Original Poster
Blog Entries: 2

Rep: Reputation: 50
Thanks for all the tips.

> ldd $(which firefox)
not a dynamic executable

Yes. On checking, the tarball is about 60MB, so it's likely static. Be the easiest way to solve dependency issues.

> Not sure I get the part about deleting half the apps.

Cleans out old libs etc which also removes apps depending on them: my guess on looking at Synaptic's ToDo list.

> do you upgrade the system regularly?

No: buy a CD set and run an on-disk repo. Too many electronics apps etc that are a bother when an update breaks things.

I like living dangerously. I'll download the tarball and give it a go.
 
Old 06-26-2018, 01:17 AM   #9
tekra
Member
 
Registered: Aug 2010
Location: Brisbane, Australia
Distribution: Gentoo, Slackware, PCLOS, Debian
Posts: 230

Original Poster
Blog Entries: 2

Rep: Reputation: 50
Aaaaaaand ... it works!!!

Thanks, guys.
 
Old 06-27-2018, 01:27 PM   #10
dogpatch
Member
 
Registered: Nov 2005
Location: Central America
Distribution: Mepis, Android
Posts: 490
Blog Entries: 4

Rep: Reputation: 238Reputation: 238Reputation: 238
Quote:
Originally Posted by scasey View Post
Hmmm. Did you go to the "Advanced Install Options & Other Platforms"? It's a css pop-up dialog box, so doesn't have a link of its own.
I think the "Download Now" button on the link I posted will give you what the site thinks is the right version for your distro...which may not be correct.
The "Download Now" button didn't do anything, so I went to the next level and chose 32-bit Linux. Downloaded and extracted just fine.

I know nothing about the "Advanced Install Options & Other Platforms". Was that a download option from the firefox page, or something i can tweek after downloading? I'll post this before I run out of connection minutes, then try looking for that.
 
  


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
[SOLVED] Flash plugin version in Firefox doesn't match version I just updated tnandy Linux - Software 4 08-02-2015 01:54 PM
Which LXDE version of Linux has the newest version of Firefox and Open Office? coolguy2008 Linux - Newbie 6 09-19-2010 12:04 PM
Flash no working (Xfce version 4.4.2/ Mozilla Firefox version 3.0.6) TeddyBear Linux - Newbie 2 07-13-2010 12:38 AM
How to compile firefox standalone? jon_k Linux - Software 1 12-22-2004 03:17 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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