Install old version of package Firefox-ESR on Ubuntu












2















I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.



In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1 from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main, but the version is apparently no longer available from this PPA.



How can I get hold of an older version of an Ubuntu package in a case like this?










share|improve this question





























    2















    I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.



    In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1 from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main, but the version is apparently no longer available from this PPA.



    How can I get hold of an older version of an Ubuntu package in a case like this?










    share|improve this question



























      2












      2








      2








      I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.



      In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1 from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main, but the version is apparently no longer available from this PPA.



      How can I get hold of an older version of an Ubuntu package in a case like this?










      share|improve this question
















      I would like to install Firefox v52 ESR on Ubuntu 16.04 in order to access a legacy Java applet. The current version Firefox 60 ESR no longer allows me to do that.



      In effect, I would like to apt-get install firefox-esr=52.5.3esr+build1-0ubuntu0.16.04.1 from deb http://ppa.launchpad.net/mozillateam/ppa/ubuntu xenial main, but the version is apparently no longer available from this PPA.



      How can I get hold of an older version of an Ubuntu package in a case like this?







      ubuntu firefox firefox-extensions apt






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 9 at 11:43









      fixer1234

      18.7k144982




      18.7k144982










      asked Jan 9 at 9:54









      rookie099rookie099

      1133




      1133






















          2 Answers
          2






          active

          oldest

          votes


















          4















          1. See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.


          2. Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).


          3. Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here


          4. Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.


          5. You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.


          6. It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:





          1. Download Firefox from the Firefox download page to your home directory.

          2. Open a Terminal and go to your home directory: cd ~

          3. Extract the contents of the downloaded file: tar xjf firefox-*.tar.bz2

          4. Close Firefox if it's open.


          5. To start Firefox, run the firefox script in the firefox folder: ~/firefox/firefox



            Firefox should now start. You can then create an icon on your desktop to run this command.






          If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.



          If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.






          share|improve this answer

































            2














            This is extension of fixer1234's answer with some shell scripts.



            There are two main URL to download Firefox package directly. These can be also viewed from a browser.




            1. http://ftp.mozilla.org/pub/firefox/releases/

            2. http://download-installer.cdn.mozilla.net/pub/firefox/releases/


            First download the package with wget or curl then extract that tarball package with tar command. Here is a sample shell script:



            #!/bin/bash
            Version='52.0esr'
            Arch='linux-x86_64'
            Lang='en-US'
            File='firefox-52.0esr.tar.bz2'
            cd ~
            wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
            tar --extract --bzip2 --file=$File
            cd firefox
            ./firefox




            This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6 command before executing Firefox.






            share|improve this answer
























            • Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the x86_64 is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)

              – fixer1234
              Jan 10 at 11:21











            • 52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in /home/username/.mozilla/firefox/profile_folders. Rename that firefox directory to something like firefox_old. After installation, you can reuse the the current folder.

              – fixer1234
              Jan 10 at 11:21













            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392211%2finstall-old-version-of-package-firefox-esr-on-ubuntu%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            4















            1. See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.


            2. Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).


            3. Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here


            4. Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.


            5. You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.


            6. It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:





            1. Download Firefox from the Firefox download page to your home directory.

            2. Open a Terminal and go to your home directory: cd ~

            3. Extract the contents of the downloaded file: tar xjf firefox-*.tar.bz2

            4. Close Firefox if it's open.


            5. To start Firefox, run the firefox script in the firefox folder: ~/firefox/firefox



              Firefox should now start. You can then create an icon on your desktop to run this command.






            If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.



            If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.






            share|improve this answer






























              4















              1. See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.


              2. Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).


              3. Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here


              4. Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.


              5. You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.


              6. It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:





              1. Download Firefox from the Firefox download page to your home directory.

              2. Open a Terminal and go to your home directory: cd ~

              3. Extract the contents of the downloaded file: tar xjf firefox-*.tar.bz2

              4. Close Firefox if it's open.


              5. To start Firefox, run the firefox script in the firefox folder: ~/firefox/firefox



                Firefox should now start. You can then create an icon on your desktop to run this command.






              If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.



              If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.






              share|improve this answer




























                4












                4








                4








                1. See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.


                2. Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).


                3. Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here


                4. Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.


                5. You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.


                6. It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:





                1. Download Firefox from the Firefox download page to your home directory.

                2. Open a Terminal and go to your home directory: cd ~

                3. Extract the contents of the downloaded file: tar xjf firefox-*.tar.bz2

                4. Close Firefox if it's open.


                5. To start Firefox, run the firefox script in the firefox folder: ~/firefox/firefox



                  Firefox should now start. You can then create an icon on your desktop to run this command.






                If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.



                If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.






                share|improve this answer
















                1. See this Mozilla article about installing an old version. They go through a page of reasons why it's a bad idea because it is insecure, and a host of alternatives. They even recommend going to a competitive browser rather than downgrade.


                2. Verify that your legacy add-on is still available and supported (many add-on developers dropped legacy support and either re-coded for the new standard or threw in the towel).


                3. Just to toss this out there, there are some Firefox spin-offs that still support the legacy add-ons but are maintained so as not to be sitting ducks for exploits. The popular options are Waterfox, Pale Moon, and Basilisk. There is some basic coverage of these options here


                4. Assuming you know all of the risks and are still intent on sticking with an old Firefox, read the part in the first link about disabling automatic updates. I had my system locked into v52 ESR for the same reason as you, and thought I had disabled updates. However, when ESR updated to v60, it ignored my settings and updated anyway. After you download it and before you install it, disconnect from the Internet until you get it installed and have turned off automatic updates. Keep the downloaded package so you can reinstall, just in case.


                5. You will likely need to get this in the form of a tarball from Mozilla. The directory of previous releases is here. You mention v52.5.3 ESR. It isn't clear if you need that specific version or that was just what Ubuntu previously had in their repository. Mozilla offers every minor release of v52, the final one being v52.9.0 ESR. That would be the most "up-to-date" version.


                6. It is a trivial installation and doesn't use the package manager. The instructions from Mozilla are here. These are the basic steps:





                1. Download Firefox from the Firefox download page to your home directory.

                2. Open a Terminal and go to your home directory: cd ~

                3. Extract the contents of the downloaded file: tar xjf firefox-*.tar.bz2

                4. Close Firefox if it's open.


                5. To start Firefox, run the firefox script in the firefox folder: ~/firefox/firefox



                  Firefox should now start. You can then create an icon on your desktop to run this command.






                If your system menu doesn't launch the new installation, edit the menu. Go to the Firefox entry and point it to the new installation start script.



                If the icon in the system tray or desktop still points to the previous installation, you can delete those icons and create new ones from the menu entry.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 9 at 11:46

























                answered Jan 9 at 11:06









                fixer1234fixer1234

                18.7k144982




                18.7k144982

























                    2














                    This is extension of fixer1234's answer with some shell scripts.



                    There are two main URL to download Firefox package directly. These can be also viewed from a browser.




                    1. http://ftp.mozilla.org/pub/firefox/releases/

                    2. http://download-installer.cdn.mozilla.net/pub/firefox/releases/


                    First download the package with wget or curl then extract that tarball package with tar command. Here is a sample shell script:



                    #!/bin/bash
                    Version='52.0esr'
                    Arch='linux-x86_64'
                    Lang='en-US'
                    File='firefox-52.0esr.tar.bz2'
                    cd ~
                    wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
                    tar --extract --bzip2 --file=$File
                    cd firefox
                    ./firefox




                    This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6 command before executing Firefox.






                    share|improve this answer
























                    • Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the x86_64 is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)

                      – fixer1234
                      Jan 10 at 11:21











                    • 52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in /home/username/.mozilla/firefox/profile_folders. Rename that firefox directory to something like firefox_old. After installation, you can reuse the the current folder.

                      – fixer1234
                      Jan 10 at 11:21


















                    2














                    This is extension of fixer1234's answer with some shell scripts.



                    There are two main URL to download Firefox package directly. These can be also viewed from a browser.




                    1. http://ftp.mozilla.org/pub/firefox/releases/

                    2. http://download-installer.cdn.mozilla.net/pub/firefox/releases/


                    First download the package with wget or curl then extract that tarball package with tar command. Here is a sample shell script:



                    #!/bin/bash
                    Version='52.0esr'
                    Arch='linux-x86_64'
                    Lang='en-US'
                    File='firefox-52.0esr.tar.bz2'
                    cd ~
                    wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
                    tar --extract --bzip2 --file=$File
                    cd firefox
                    ./firefox




                    This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6 command before executing Firefox.






                    share|improve this answer
























                    • Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the x86_64 is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)

                      – fixer1234
                      Jan 10 at 11:21











                    • 52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in /home/username/.mozilla/firefox/profile_folders. Rename that firefox directory to something like firefox_old. After installation, you can reuse the the current folder.

                      – fixer1234
                      Jan 10 at 11:21
















                    2












                    2








                    2







                    This is extension of fixer1234's answer with some shell scripts.



                    There are two main URL to download Firefox package directly. These can be also viewed from a browser.




                    1. http://ftp.mozilla.org/pub/firefox/releases/

                    2. http://download-installer.cdn.mozilla.net/pub/firefox/releases/


                    First download the package with wget or curl then extract that tarball package with tar command. Here is a sample shell script:



                    #!/bin/bash
                    Version='52.0esr'
                    Arch='linux-x86_64'
                    Lang='en-US'
                    File='firefox-52.0esr.tar.bz2'
                    cd ~
                    wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
                    tar --extract --bzip2 --file=$File
                    cd firefox
                    ./firefox




                    This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6 command before executing Firefox.






                    share|improve this answer













                    This is extension of fixer1234's answer with some shell scripts.



                    There are two main URL to download Firefox package directly. These can be also viewed from a browser.




                    1. http://ftp.mozilla.org/pub/firefox/releases/

                    2. http://download-installer.cdn.mozilla.net/pub/firefox/releases/


                    First download the package with wget or curl then extract that tarball package with tar command. Here is a sample shell script:



                    #!/bin/bash
                    Version='52.0esr'
                    Arch='linux-x86_64'
                    Lang='en-US'
                    File='firefox-52.0esr.tar.bz2'
                    cd ~
                    wget http://ftp.mozilla.org/pub/firefox/releases/$Version/$Arch/$Lang/$File
                    tar --extract --bzip2 --file=$File
                    cd firefox
                    ./firefox




                    This installation procedure may overwrite previous installed Firefox profile. Also the Firefox binary may not be visible in any desktop manager menu. Firefox depends on some libraries, check/install those with apt-get install libgtk-3-0 libdbus-glib-1-2 libxt6 command before executing Firefox.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jan 10 at 9:15









                    BiswapriyoBiswapriyo

                    2,92631342




                    2,92631342













                    • Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the x86_64 is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)

                      – fixer1234
                      Jan 10 at 11:21











                    • 52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in /home/username/.mozilla/firefox/profile_folders. Rename that firefox directory to something like firefox_old. After installation, you can reuse the the current folder.

                      – fixer1234
                      Jan 10 at 11:21





















                    • Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the x86_64 is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)

                      – fixer1234
                      Jan 10 at 11:21











                    • 52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in /home/username/.mozilla/firefox/profile_folders. Rename that firefox directory to something like firefox_old. After installation, you can reuse the the current folder.

                      – fixer1234
                      Jan 10 at 11:21



















                    Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the x86_64 is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)

                    – fixer1234
                    Jan 10 at 11:21





                    Ah, yes. Support for the CLI users! Just a couple of observations for readers. 1. The packaged versions are different for deb and rpm based distros, so Arch would use a different package than Ubuntu, and some people may be used to seeing that. In the script, Arch is just a variable name. For the tarballs, all Linux distros use the same tarball (although there are different ones for different computer architectures; the x86_64 is for 64 bit systems). Also note the need to specify the desired minor release number in the second line; (cont'd)

                    – fixer1234
                    Jan 10 at 11:21













                    52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in /home/username/.mozilla/firefox/profile_folders. Rename that firefox directory to something like firefox_old. After installation, you can reuse the the current folder.

                    – fixer1234
                    Jan 10 at 11:21







                    52.0 was the first v52 release, the last was 52.9.0. So recognize that the script might need some minor tweaking, hence sample script. 2. The libraries mentioned in the last paragraph should already be there if Firefox was previously installed. 3. To avoid any risk of your profile being overwritten, you can temporarily rename the existing directory. The profiles are in /home/username/.mozilla/firefox/profile_folders. Rename that firefox directory to something like firefox_old. After installation, you can reuse the the current folder.

                    – fixer1234
                    Jan 10 at 11:21




















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392211%2finstall-old-version-of-package-firefox-esr-on-ubuntu%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Plaza Victoria

                    In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                    How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...