DEV Community

Stack All Flow
Stack All Flow

Posted on • Originally published at stackallflow.com on

No more updates for Google Chrome 32-bit in Ubuntu!

aptgoogle-chromerelease-management

I am using Google Chrome 48.0 32-bit. Today when I launched Google Chrome, I got this message:

This computer will soon stop receiving Google Chrome updates because
this Linux system will no longer be supported

Enter fullscreen mode Exit fullscreen mode

I thought Ubuntu 14.04 is supported for five years, what’s exactly happening here?

And on 64-bit Ubuntu, I get an error from Update Manager and apt-get update:

Failed to fetch http://dl.google.com/linux/chrome/deb/dists/stable/Release 
Unable to find expected entry 'main/binary-i386/Packages' in Release file
(Wrong sources.list entry or malformed file)  
Some index files failed to download.  
They have been ignored, or old ones used instead.  
Enter fullscreen mode Exit fullscreen mode

Accepted Answer

Important information on how to install Chrome in Ubuntu 16.04 and 17.04 at the bottom !

This message is valid for Linux 32 bit systems only, 64 bit systems of course will stay supported.

When you have the 32 bit version of Ubuntu installed, Google Chrome will not receive updates, starting from March 2016 – this already was announced by Google back on December 1st 2015.

Google: We will end support for Google Chrome on 32-bit Linux, Ubuntu Precise (12.04) …

When you want to receive Chrome updates – you should switch to the 64 bit version of Ubuntu.

Ubuntu 14.04.3 LTS and Ubuntu 15.10 are recommended to download in 64 bit flavour anyway.

The next Ubuntu LTS edition 16.04 Xenial Xerus will be released in April 2016, install it in 64 bit.

In the time frame from March to April you can use the pre-installed Firefox web browser instead.

Alternatively you can install chromium-browser or epiphany-browser from Ubuntu repositories.

Or you can install the 64 bit version of Ubuntu 14.04, but is this worth the effort? … you decide …

The five year support for Ubuntu LTS editions covers the system including official repositories.

Google Chrome is not available in the official Ubuntu repositories and that is the reason why there is no five year LTS support for Chrome provided from the Canonical/Ubuntu developers.

Update information 2016-03-03: Google has removed the 32 bit version from their repository !

As you can see on the Google Chrome website, there is no 32 bit Linux edition offered anymore.

Running sudo apt-get update gives the following error:

Failed to fetch http://dl.google.com/linux/chrome/deb/dists/stable/Release 
Unable to find expected entry 'main/binary-i386/Packages' in Release file
(Wrong sources.list entry or malformed file)  
Some index files failed to download.  
They have been ignored, or old ones used instead.  

Enter fullscreen mode Exit fullscreen mode

As a workaround set the repositories specifically for 64 bit:

sudo sed -i -e 's/deb http/deb [arch=amd64] http/' "/etc/apt/sources.list.d/google-chrome.list" "/opt/google/chrome/cron/google-chrome"

Enter fullscreen mode Exit fullscreen mode

Reference: Fix “Failed to fetch” Google Chrome repository

Update information 2016-03-09: Google seems to have fixed the issue in version 49.0.2623.87 !

/opt/google/chrome/cron/google-chrome file now has these architecture relevant entries:

# sources.list setting for google-chrome updates.
REPOCONFIG="deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
REPOCONFIGREGEX="deb ([arch=[^]]*bamd64b[^]]*][[:space:]]*)?https?://dl.google.com/linux/chrome/deb/ stable main"

Enter fullscreen mode Exit fullscreen mode

/etc/apt/sources.list.d/google-chrome.list file shows this architecture relevant entry:

### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

Enter fullscreen mode Exit fullscreen mode

Update information 2016-04-21: How to install the Google Chrome browser in Ubuntu 16.04

There currently is an issue to install Google Chrome by downloading from Google website. When clicking on the .deb file Ubuntu Software opens, but nothing happens when you click on Install. Install Google Chrome properly this way – open a terminal and execute the following commands:

echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list  
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -  
sudo apt-get update
sudo apt-get install google-chrome-stable

Enter fullscreen mode Exit fullscreen mode

There is little new “weak signature” issue when updating the repositories – but it can be ignored:

W: http://dl.google.com/linux/chrome/deb/dists/stable/Release.gpg: Signature by key 4CCA1EAF950CEE4AB83976DCA040830F7FAC5991 uses weak digest algorithm (SHA1)  

Enter fullscreen mode Exit fullscreen mode

Update information 2017-04-13: How to install the Google Chrome browser in Ubuntu 17.04

The commands given above for Ubuntu 16.04 are still valid and the best working solution to install Google Chrome successfully. Note : the command apt can be used instead of apt-get as well.

The post No more updates for Google Chrome 32-bit in Ubuntu! appeared first on Stack All Flow.

Top comments (0)