Celeb Glow
general | March 24, 2026

Why doesn't the chrome dev channel upgrade Chrome via apt-get upgrade anymore?

I was using the Chrome dev channel for a while and was used to getting updates via:

apt-get update && apt-get upgrade

Recently I discovered though that my dev channel remains the same and I have to redownload the google-chrome-unstable_current_amd64.deb from google and then an upgrade gets applied via the software center.

How to always get upgrades for Chrome dev channel?

4

1 Answer

From :

Setup key with:

wget -q -O - | sudo apt-key add - 

Setup repository with:

sudo sh -c 'echo "deb [arch=amd64] stable main" >> /etc/apt/sources.list.d/google.list'

Setup package with:

sudo apt-get update
sudo apt-get install google-chrome-unstable

Then you can get updates using sudo apt update && sudo apt upgrade

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy