Install older versions of google-chrome-stable, on ubuntu 14.10












5















I am able to do,



sudo apt-get install google-chrome-stable


This installs, chrome version 45 which does not support NPAPI plug-ins that is needed to run java inside browser.



I am trying to move one or two versions older, so that i can use this feature, but there is no info on net available.



In the meanwhile,



sudo dpkg-query -l "*google-chrome*"


shows only chrome 45.



ii  google-chrome-stable           45.0.2454.101-1      amd64                The web browser from Google


Does it mean, chrome doesn't allow people to use older versions?



Note: people suggesting me to use firefox for java plugin will get -ve points










share|improve this question























  • I found some older versions of chromium here: archive.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/…

    – Mikel Vysotsky
    Jul 27 '18 at 17:06
















5















I am able to do,



sudo apt-get install google-chrome-stable


This installs, chrome version 45 which does not support NPAPI plug-ins that is needed to run java inside browser.



I am trying to move one or two versions older, so that i can use this feature, but there is no info on net available.



In the meanwhile,



sudo dpkg-query -l "*google-chrome*"


shows only chrome 45.



ii  google-chrome-stable           45.0.2454.101-1      amd64                The web browser from Google


Does it mean, chrome doesn't allow people to use older versions?



Note: people suggesting me to use firefox for java plugin will get -ve points










share|improve this question























  • I found some older versions of chromium here: archive.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/…

    – Mikel Vysotsky
    Jul 27 '18 at 17:06














5












5








5


1






I am able to do,



sudo apt-get install google-chrome-stable


This installs, chrome version 45 which does not support NPAPI plug-ins that is needed to run java inside browser.



I am trying to move one or two versions older, so that i can use this feature, but there is no info on net available.



In the meanwhile,



sudo dpkg-query -l "*google-chrome*"


shows only chrome 45.



ii  google-chrome-stable           45.0.2454.101-1      amd64                The web browser from Google


Does it mean, chrome doesn't allow people to use older versions?



Note: people suggesting me to use firefox for java plugin will get -ve points










share|improve this question














I am able to do,



sudo apt-get install google-chrome-stable


This installs, chrome version 45 which does not support NPAPI plug-ins that is needed to run java inside browser.



I am trying to move one or two versions older, so that i can use this feature, but there is no info on net available.



In the meanwhile,



sudo dpkg-query -l "*google-chrome*"


shows only chrome 45.



ii  google-chrome-stable           45.0.2454.101-1      amd64                The web browser from Google


Does it mean, chrome doesn't allow people to use older versions?



Note: people suggesting me to use firefox for java plugin will get -ve points







apt chrome






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Oct 1 '15 at 6:49









MadhavanMadhavan

1,75192959




1,75192959













  • I found some older versions of chromium here: archive.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/…

    – Mikel Vysotsky
    Jul 27 '18 at 17:06



















  • I found some older versions of chromium here: archive.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/…

    – Mikel Vysotsky
    Jul 27 '18 at 17:06

















I found some older versions of chromium here: archive.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/…

– Mikel Vysotsky
Jul 27 '18 at 17:06





I found some older versions of chromium here: archive.ubuntu.com/ubuntu/pool/universe/c/chromium-browser/…

– Mikel Vysotsky
Jul 27 '18 at 17:06










3 Answers
3






active

oldest

votes


















5














See: http://www.ubuntuupdates.org/pm/google-chrome-stable



There you can found older versions. Just download the .deb you need and install it.






share|improve this answer

































    3














    You can't, unfortunately. Google removes all but the latest version from the PPA and from their download site.



    You'll need to build your own repo of deb files to use when installing older versions.






    share|improve this answer































      0














      Follow below steps and specify old the stable version you want to install.



      1. Download Google’s signing key and add it to keyring to verify integrity of package

      wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -



      2. Set the repository

      sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'



      3. Update package list

      apt-get update



      4. Install the stable version of Google Chrome

      apt-get install -y google-chrome-stable=specify-chrome-stable-version --
      no-install-recommends






      share|improve this answer










      New contributor




      sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "106"
        };
        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: false,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        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%2funix.stackexchange.com%2fquestions%2f233185%2finstall-older-versions-of-google-chrome-stable-on-ubuntu-14-10%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        5














        See: http://www.ubuntuupdates.org/pm/google-chrome-stable



        There you can found older versions. Just download the .deb you need and install it.






        share|improve this answer






























          5














          See: http://www.ubuntuupdates.org/pm/google-chrome-stable



          There you can found older versions. Just download the .deb you need and install it.






          share|improve this answer




























            5












            5








            5







            See: http://www.ubuntuupdates.org/pm/google-chrome-stable



            There you can found older versions. Just download the .deb you need and install it.






            share|improve this answer















            See: http://www.ubuntuupdates.org/pm/google-chrome-stable



            There you can found older versions. Just download the .deb you need and install it.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Oct 1 '15 at 7:07

























            answered Oct 1 '15 at 7:01









            RomanRoman

            15127




            15127

























                3














                You can't, unfortunately. Google removes all but the latest version from the PPA and from their download site.



                You'll need to build your own repo of deb files to use when installing older versions.






                share|improve this answer




























                  3














                  You can't, unfortunately. Google removes all but the latest version from the PPA and from their download site.



                  You'll need to build your own repo of deb files to use when installing older versions.






                  share|improve this answer


























                    3












                    3








                    3







                    You can't, unfortunately. Google removes all but the latest version from the PPA and from their download site.



                    You'll need to build your own repo of deb files to use when installing older versions.






                    share|improve this answer













                    You can't, unfortunately. Google removes all but the latest version from the PPA and from their download site.



                    You'll need to build your own repo of deb files to use when installing older versions.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jun 26 '17 at 16:10









                    Joseph LustJoseph Lust

                    1313




                    1313























                        0














                        Follow below steps and specify old the stable version you want to install.



                        1. Download Google’s signing key and add it to keyring to verify integrity of package

                        wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -



                        2. Set the repository

                        sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'



                        3. Update package list

                        apt-get update



                        4. Install the stable version of Google Chrome

                        apt-get install -y google-chrome-stable=specify-chrome-stable-version --
                        no-install-recommends






                        share|improve this answer










                        New contributor




                        sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.

























                          0














                          Follow below steps and specify old the stable version you want to install.



                          1. Download Google’s signing key and add it to keyring to verify integrity of package

                          wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -



                          2. Set the repository

                          sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'



                          3. Update package list

                          apt-get update



                          4. Install the stable version of Google Chrome

                          apt-get install -y google-chrome-stable=specify-chrome-stable-version --
                          no-install-recommends






                          share|improve this answer










                          New contributor




                          sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.























                            0












                            0








                            0







                            Follow below steps and specify old the stable version you want to install.



                            1. Download Google’s signing key and add it to keyring to verify integrity of package

                            wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -



                            2. Set the repository

                            sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'



                            3. Update package list

                            apt-get update



                            4. Install the stable version of Google Chrome

                            apt-get install -y google-chrome-stable=specify-chrome-stable-version --
                            no-install-recommends






                            share|improve this answer










                            New contributor




                            sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.










                            Follow below steps and specify old the stable version you want to install.



                            1. Download Google’s signing key and add it to keyring to verify integrity of package

                            wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -



                            2. Set the repository

                            sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'



                            3. Update package list

                            apt-get update



                            4. Install the stable version of Google Chrome

                            apt-get install -y google-chrome-stable=specify-chrome-stable-version --
                            no-install-recommends







                            share|improve this answer










                            New contributor




                            sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            share|improve this answer



                            share|improve this answer








                            edited 18 secs ago





















                            New contributor




                            sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.









                            answered 11 mins ago









                            sapan prajapatisapan prajapati

                            1




                            1




                            New contributor




                            sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.





                            New contributor





                            sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






                            sapan prajapati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                            Check out our Code of Conduct.






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Unix & Linux Stack Exchange!


                                • 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%2funix.stackexchange.com%2fquestions%2f233185%2finstall-older-versions-of-google-chrome-stable-on-ubuntu-14-10%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

                                濃尾地震

                                How to rewrite equation of hyperbola in standard form

                                No ethernet ip address in my vocore2