Disable Chromium "Can not update Chromium" Window Notification

Konzule picture Konzule · Nov 22, 2019 · Viewed 7.2k times · Source

We're running Google Chromium in kiosk mode on a touch screen (Linux). Often we get the message "Can not update Chromium" window notification. We have not found a flag that would prevent this.

Does somebody have an idea?

Answer

heine picture heine · Mar 12, 2020

This Bug seems to be floating around Debian and Raspbian already since Chromium 76.

From the Debian Report I understand it should be fixed with Chromium 78 and the commandline option --disable-component-update should disable it.

But from the thread in the Raspberrypi.org Forums it still seems to appear in Chromium 78 at least on Raspbian. So there the following workaround is proposed:

Create a file /etc/chromium-browser/customizations/01-disable-update-check and set its content to

CHROMIUM_FLAGS="${CHROMIUM_FLAGS} --check-for-update-interval=31536000"

Or as a copy&paste solution:

sudo touch /etc/chromium-browser/customizations/01-disable-update-check;echo CHROMIUM_FLAGS=\"\$\{CHROMIUM_FLAGS\} --check-for-update-interval=31536000\" | sudo tee /etc/chromium-browser/customizations/01-disable-update-check

It effectively disables the update check for 1 year, until then a fix should have been distributed.