Has anybody else noticed the above warning/error when trying sudo apt-get update lately (if you have Google Chrome installed)? The update process fails because of this.
I found out that the cause is Google dropping support and removing the repository for the 32bit version of Google Chrome (see here for more info: http://www.omgubuntu.co.uk/2016/01/g...t-discontinued). Even if you are using a 64bit distro and have the 64bit version of Chrome installed (as do I) it will still affect you.
I found a fix for the problem here http://www.omgubuntu.co.uk/2016/03/f...t-error-ubuntu
This is from the Featured Comment on that page, which is correct for the Stable version of Chrome:
BUT ....
Unfortunately this is immediately over-written by the Chrome update process making the fix temporary. I found a more comprehensive fix further down on that page which expands on the above and is working for me so far:
I found out that the cause is Google dropping support and removing the repository for the 32bit version of Google Chrome (see here for more info: http://www.omgubuntu.co.uk/2016/01/g...t-discontinued). Even if you are using a 64bit distro and have the 64bit version of Chrome installed (as do I) it will still affect you.
I found a fix for the problem here http://www.omgubuntu.co.uk/2016/03/f...t-error-ubuntu
This is from the Featured Comment on that page, which is correct for the Stable version of Chrome:
Code:
Easy way.. sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list" sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/opt/google/chrome/cron/google-chrome"
Unfortunately this is immediately over-written by the Chrome update process making the fix temporary. I found a more comprehensive fix further down on that page which expands on the above and is working for me so far:
Code:
1. Open a terminal and run "cd /etc/default" , then "sudo nano google-chrome" 2. In the config file, change the 2nd line: "repo_reenable_on_distupgrade="true" so that it is false, as in repo_reenable_on_distupgrade="false", then save the config file. 3. Now, you can make the edit to the repo as instructed above. Since you're already in a terminal window, it is easier to run the commands provided by eMcE above: sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list" sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/opt/google/chrome/cron/google-chrome" You changes now won't be overwritten by the config directive.
Comment