0

When I try to run apt-get update, I get an 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)

How can I fix it? I don't remember chrome version installed.

Nephente
  • 5,875
ALTELMA
  • 25
  • 3

1 Answers1

0

Google has stopped supporting Google Chrome on 32-bit Linux.

Users running a 32bit Linux distribution are advised to stop using Google Chrome because, while it will continue to work, it will no longer receive any updates (including no security fixes).

For 64 Bit systems, you need to run this command in terminal(Ctrl + Alt + T)

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

For 32 Bit systems, you need to run this command in terminal(Ctrl + Alt + T)

sudo rm /etc/apt/sources.list.d/google-chrome.list
sudo apt-get remove google-chrome
wittich
  • 1,214
Ashu
  • 4,004