The repository 'http://dl.google.com/linux/chrome/deb stable Release' does not have a Release file











up vote
0
down vote

favorite












After executing this command



sudo apt-get update && sudo apt-get -y upgrade


I get this error



W: The repository 'http://dl.google.com/linux/chrome/deb stable Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.


I've seen past inquiries on same issue but the answers given are specific to other repositories.
Any help will be appreciated.










share|improve this question




















  • 1




    This is something Google needs to fix on their end, by rebuilding their apt repository in the more secure and correct manner.
    – dobey
    Nov 7 at 21:07















up vote
0
down vote

favorite












After executing this command



sudo apt-get update && sudo apt-get -y upgrade


I get this error



W: The repository 'http://dl.google.com/linux/chrome/deb stable Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.


I've seen past inquiries on same issue but the answers given are specific to other repositories.
Any help will be appreciated.










share|improve this question




















  • 1




    This is something Google needs to fix on their end, by rebuilding their apt repository in the more secure and correct manner.
    – dobey
    Nov 7 at 21:07













up vote
0
down vote

favorite









up vote
0
down vote

favorite











After executing this command



sudo apt-get update && sudo apt-get -y upgrade


I get this error



W: The repository 'http://dl.google.com/linux/chrome/deb stable Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.


I've seen past inquiries on same issue but the answers given are specific to other repositories.
Any help will be appreciated.










share|improve this question















After executing this command



sudo apt-get update && sudo apt-get -y upgrade


I get this error



W: The repository 'http://dl.google.com/linux/chrome/deb stable Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.


I've seen past inquiries on same issue but the answers given are specific to other repositories.
Any help will be appreciated.







apt updates google-chrome authentication gnupg






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 7 at 21:44









Sebastian

235




235










asked Sep 27 at 7:08









Eric kioko

44




44








  • 1




    This is something Google needs to fix on their end, by rebuilding their apt repository in the more secure and correct manner.
    – dobey
    Nov 7 at 21:07














  • 1




    This is something Google needs to fix on their end, by rebuilding their apt repository in the more secure and correct manner.
    – dobey
    Nov 7 at 21:07








1




1




This is something Google needs to fix on their end, by rebuilding their apt repository in the more secure and correct manner.
– dobey
Nov 7 at 21:07




This is something Google needs to fix on their end, by rebuilding their apt repository in the more secure and correct manner.
– dobey
Nov 7 at 21:07










3 Answers
3






active

oldest

votes

















up vote
2
down vote













The previous answer was wrong (Traxidus Wolf).



That issue (reference) wasn't an error but just a message for that guy to answer yes or no (change from Google Inc to LLC), it happened to all last week after an update.



The problem was that apt-get is low level now and apt more user-oriented so apt-get did not ask for the user interaction.





This error is different:



The "key" is "repository can't be authenticated"



IMHO... you don't have the key of the repo



To solve that just use this command:



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


https://www.google.com/linuxrepositories/



In the past you could add any repo you wanted, now you need their gpg key otherwise doesn't work.






share|improve this answer






























    up vote
    2
    down vote













    As per the answer at this post » How to update Google Chrome 70 after change in 'Origin' value? '
    Due to the low level of apt-get the prompt isn't provided.



    Run: "apt update"



    It will give you a "y/n" prompt, chose "y" and from then on the error and note will be treated.






    share|improve this answer








    New contributor




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

























      up vote
      -1
      down vote













      This work for me:



      sudo apt list --upgradable





      share|improve this answer








      New contributor




      Jose Sanchez Robles 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: "89"
        };
        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',
        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%2faskubuntu.com%2fquestions%2f1078813%2fthe-repository-http-dl-google-com-linux-chrome-deb-stable-release-does-not-h%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








        up vote
        2
        down vote













        The previous answer was wrong (Traxidus Wolf).



        That issue (reference) wasn't an error but just a message for that guy to answer yes or no (change from Google Inc to LLC), it happened to all last week after an update.



        The problem was that apt-get is low level now and apt more user-oriented so apt-get did not ask for the user interaction.





        This error is different:



        The "key" is "repository can't be authenticated"



        IMHO... you don't have the key of the repo



        To solve that just use this command:



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


        https://www.google.com/linuxrepositories/



        In the past you could add any repo you wanted, now you need their gpg key otherwise doesn't work.






        share|improve this answer



























          up vote
          2
          down vote













          The previous answer was wrong (Traxidus Wolf).



          That issue (reference) wasn't an error but just a message for that guy to answer yes or no (change from Google Inc to LLC), it happened to all last week after an update.



          The problem was that apt-get is low level now and apt more user-oriented so apt-get did not ask for the user interaction.





          This error is different:



          The "key" is "repository can't be authenticated"



          IMHO... you don't have the key of the repo



          To solve that just use this command:



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


          https://www.google.com/linuxrepositories/



          In the past you could add any repo you wanted, now you need their gpg key otherwise doesn't work.






          share|improve this answer

























            up vote
            2
            down vote










            up vote
            2
            down vote









            The previous answer was wrong (Traxidus Wolf).



            That issue (reference) wasn't an error but just a message for that guy to answer yes or no (change from Google Inc to LLC), it happened to all last week after an update.



            The problem was that apt-get is low level now and apt more user-oriented so apt-get did not ask for the user interaction.





            This error is different:



            The "key" is "repository can't be authenticated"



            IMHO... you don't have the key of the repo



            To solve that just use this command:



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


            https://www.google.com/linuxrepositories/



            In the past you could add any repo you wanted, now you need their gpg key otherwise doesn't work.






            share|improve this answer














            The previous answer was wrong (Traxidus Wolf).



            That issue (reference) wasn't an error but just a message for that guy to answer yes or no (change from Google Inc to LLC), it happened to all last week after an update.



            The problem was that apt-get is low level now and apt more user-oriented so apt-get did not ask for the user interaction.





            This error is different:



            The "key" is "repository can't be authenticated"



            IMHO... you don't have the key of the repo



            To solve that just use this command:



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


            https://www.google.com/linuxrepositories/



            In the past you could add any repo you wanted, now you need their gpg key otherwise doesn't work.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 7 at 22:48









            Yufenyuy Veyeh Dider

            1,4004924




            1,4004924










            answered Nov 7 at 21:07









            Sebastian

            235




            235
























                up vote
                2
                down vote













                As per the answer at this post » How to update Google Chrome 70 after change in 'Origin' value? '
                Due to the low level of apt-get the prompt isn't provided.



                Run: "apt update"



                It will give you a "y/n" prompt, chose "y" and from then on the error and note will be treated.






                share|improve this answer








                New contributor




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






















                  up vote
                  2
                  down vote













                  As per the answer at this post » How to update Google Chrome 70 after change in 'Origin' value? '
                  Due to the low level of apt-get the prompt isn't provided.



                  Run: "apt update"



                  It will give you a "y/n" prompt, chose "y" and from then on the error and note will be treated.






                  share|improve this answer








                  New contributor




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




















                    up vote
                    2
                    down vote










                    up vote
                    2
                    down vote









                    As per the answer at this post » How to update Google Chrome 70 after change in 'Origin' value? '
                    Due to the low level of apt-get the prompt isn't provided.



                    Run: "apt update"



                    It will give you a "y/n" prompt, chose "y" and from then on the error and note will be treated.






                    share|improve this answer








                    New contributor




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









                    As per the answer at this post » How to update Google Chrome 70 after change in 'Origin' value? '
                    Due to the low level of apt-get the prompt isn't provided.



                    Run: "apt update"



                    It will give you a "y/n" prompt, chose "y" and from then on the error and note will be treated.







                    share|improve this answer








                    New contributor




                    André Bettencourt 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






                    New contributor




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









                    answered Nov 9 at 10:34









                    André Bettencourt

                    211




                    211




                    New contributor




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





                    New contributor





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






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






















                        up vote
                        -1
                        down vote













                        This work for me:



                        sudo apt list --upgradable





                        share|improve this answer








                        New contributor




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






















                          up vote
                          -1
                          down vote













                          This work for me:



                          sudo apt list --upgradable





                          share|improve this answer








                          New contributor




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




















                            up vote
                            -1
                            down vote










                            up vote
                            -1
                            down vote









                            This work for me:



                            sudo apt list --upgradable





                            share|improve this answer








                            New contributor




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









                            This work for me:



                            sudo apt list --upgradable






                            share|improve this answer








                            New contributor




                            Jose Sanchez Robles 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






                            New contributor




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









                            answered 13 mins ago









                            Jose Sanchez Robles

                            1




                            1




                            New contributor




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





                            New contributor





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






                            Jose Sanchez Robles 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



















































                                 


                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1078813%2fthe-repository-http-dl-google-com-linux-chrome-deb-stable-release-does-not-h%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

                                Category:香港粉麵

                                List *all* the tuples!

                                Channel [V]