<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Install Mozilla Firefox 135 on Linux	</title>
	<atom:link href="https://www.tecmint.com/install-firefox-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-firefox-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Wed, 05 Feb 2025 06:55:25 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: MikeOh Shark		</title>
		<link>https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-1202380</link>

		<dc:creator><![CDATA[MikeOh Shark]]></dc:creator>
		<pubDate>Sun, 14 Jul 2019 01:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8699#comment-1202380</guid>

					<description><![CDATA[Mozilla 68.0 would not run on my Linux Mint 13 (yes, I know it is out of support but I run all apps in &lt;strong&gt;firejails&lt;/strong&gt; and behind &lt;strong&gt;iptables&lt;/strong&gt;). I believe it is from an older gtk release. Firefox goes into a constant loop of crash reporter, this even when disabling crash reporter by editing the &lt;strong&gt;application.ini&lt;/strong&gt; file.

How can I determine what libraries Firefox needs? Can I obtain the correct libraries, copy them to the same folder as Firefox, and still run it in a firejail?]]></description>
			<content:encoded><![CDATA[<p>Mozilla 68.0 would not run on my Linux Mint 13 (yes, I know it is out of support but I run all apps in <strong>firejails</strong> and behind <strong>iptables</strong>). I believe it is from an older gtk release. Firefox goes into a constant loop of crash reporter, this even when disabling crash reporter by editing the <strong>application.ini</strong> file.</p>
<p>How can I determine what libraries Firefox needs? Can I obtain the correct libraries, copy them to the same folder as Firefox, and still run it in a firejail?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Joe Btsfsplnk		</title>
		<link>https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-1182705</link>

		<dc:creator><![CDATA[Joe Btsfsplnk]]></dc:creator>
		<pubDate>Thu, 27 Jun 2019 06:11:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8699#comment-1182705</guid>

					<description><![CDATA[After I type the terminal command &lt;strong&gt;/opt/firefox/firefox&lt;/strong&gt;, I get Syntax error: &quot;(&quot; unexpected]]></description>
			<content:encoded><![CDATA[<p>After I type the terminal command <strong>/opt/firefox/firefox</strong>, I get Syntax error: &#8220;(&#8221; unexpected</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mirek Zvolsky		</title>
		<link>https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991339</link>

		<dc:creator><![CDATA[Mirek Zvolsky]]></dc:creator>
		<pubDate>Fri, 11 May 2018 09:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8699#comment-991339</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991303&quot;&gt;Mirek Zvolsky&lt;/a&gt;.

v58+ means requirement for selenium testing (geckodriver on the PATH)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991303">Mirek Zvolsky</a>.</p>
<p>v58+ means requirement for selenium testing (geckodriver on the PATH)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mirek Zvolsky		</title>
		<link>https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991303</link>

		<dc:creator><![CDATA[Mirek Zvolsky]]></dc:creator>
		<pubDate>Fri, 11 May 2018 06:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8699#comment-991303</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991003&quot;&gt;Ravi Saive&lt;/a&gt;.

ssh -X  # or:
&lt;pre&gt;
vagrant ssh
  where in Vagrantfile:
    config.ssh.forward_agent=true
    config.ssh.forward_x11=true;
&lt;/pre&gt;
&lt;pre&gt;
yum install gtk3
yum install xorg-x11-xauth
yum install dejavu-lgc-sans-fonts
# log out/in (exit/ssh)
echo $DISPLAY   # will print: localhost:10.0
&lt;/pre&gt;
We need firefox v58+ (at this time v52 from repo is not enough)
&lt;pre&gt;
su
cd /opt
wget https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/linux-x86_64/en-US/firefox-60.0.tar.bz2
tar xfj firefox-60.0.tar.bz2
ln -s /opt/firefox/firefox /usr/bin/firefox
exit  # -&#062; normal user
firefox
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991003">Ravi Saive</a>.</p>
<p>ssh -X  # or:</p>
<pre>
vagrant ssh
  where in Vagrantfile:
    config.ssh.forward_agent=true
    config.ssh.forward_x11=true;
</pre>
<pre>
yum install gtk3
yum install xorg-x11-xauth
yum install dejavu-lgc-sans-fonts
# log out/in (exit/ssh)
echo $DISPLAY   # will print: localhost:10.0
</pre>
<p>We need firefox v58+ (at this time v52 from repo is not enough)</p>
<pre>
su
cd /opt
wget https://download-installer.cdn.mozilla.net/pub/firefox/releases/60.0/linux-x86_64/en-US/firefox-60.0.tar.bz2
tar xfj firefox-60.0.tar.bz2
ln -s /opt/firefox/firefox /usr/bin/firefox
exit  # -&gt; normal user
firefox
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991300</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 11 May 2018 06:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=8699#comment-991300</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991133&quot;&gt;Mirek Zvolsky&lt;/a&gt;.

@Mirek,

That&#039;s really great and thanks for sharing, let me give a try on my CentOS 6 box, last day me too facing same problem, but I didn&#039;t tried it installing from YUM package manager thought latest Firefox needs upgraded GTK...:)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-firefox-linux/comment-page-1/#comment-991133">Mirek Zvolsky</a>.</p>
<p>@Mirek,</p>
<p>That&#8217;s really great and thanks for sharing, let me give a try on my CentOS 6 box, last day me too facing same problem, but I didn&#8217;t tried it installing from YUM package manager thought latest Firefox needs upgraded GTK&#8230;:)</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
