<div dir="ltr"><div class="gmail_default" style="font-family:tahoma,sans-serif">BTW, thanks for this script Khalid(way beyond my skill set or comprehension(for now)), I will give it a shot on my play Linux laptop.</div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">I have FF ESR setup as just a linkĀ  on my desktop to the executable, but would prefer a much more elegant and forward-looking as your script.</div><div class="gmail_default" style="font-family:tahoma,sans-serif">Shazbot! I have ton to learn!</div><div class="gmail_default" style="font-family:tahoma,sans-serif"><br></div><div class="gmail_default" style="font-family:tahoma,sans-serif">Why I am still sticking with FF ESR? I can continue to use my absolutely fav add-ons until at least mid-2018. I'll take it.<br></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature">Thanks,<br><br>Ron Singh<br>"in transit, via mobile comm device"</div></div>
<br><div class="gmail_quote">On Sun, Nov 19, 2017 at 9:53 PM, Khalid Baheyeldin <span dir="ltr"><<a href="mailto:kb@2bits.com" target="_blank">kb@2bits.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">An update for those who want to wait before upgrading to<br>
Firefox 57.<br>
<br>
Staying on the ESR will buy you time, until the extensions<br>
crucial to your day to day activities have been ported to<br>
to 57.<br>
<br>
Here is a simple script that will install the latest ESR on your<br>
Linux 64 bit system.<br>
<br>
Make sure that you purge the existing Firefox 56 or 57 from<br>
your system before running it.<br>
<br>
Also, it can be used to upgrade the ESR when security updates<br>
are applied to it. Mozilla have made the URL portable and points<br>
to the latest version of the ESR.<br>
<br>
#!/bin/sh<br>
<br>
FF_ARC="/tmp/ff.tar.bz2"<br>
TARGET_DIR="/opt"<br>
# This is the permanent location for Firefox ESR. It is for the 64bit version.<br>
# If you use the 32bit version, change "os=linux64" below to "os=linux"<br>
FF_ESR="<a href="https://download.mozilla.org/?product=firefox-esr-latest&os=linux64&lang=en-US" rel="noreferrer" target="_blank">https://download.<wbr>mozilla.org/?product=firefox-<wbr>esr-latest&os=linux64&lang=en-<wbr>US</a>"<br>
<br>
wget -O $FF_ARC $FF_ESR<br>
<br>
rm -rf $TARGET_DIR/firefox<br>
<br>
sudo tar -xvjf $FF_ARC -C /opt<br>
<br>
echo "Create a menu entry for '/opt/firefox/firefox' if this is the<br>
first time you install ESR"<br>
<br>
______________________________<wbr>_________________<br>
kwlug-disc mailing list<br>
<a href="mailto:kwlug-disc@kwlug.org">kwlug-disc@kwlug.org</a><br>
<a href="http://kwlug.org/mailman/listinfo/kwlug-disc_kwlug.org" rel="noreferrer" target="_blank">http://kwlug.org/mailman/<wbr>listinfo/kwlug-disc_kwlug.org</a><br>
</blockquote></div><br></div></div>