Skip to content

Instantly share code, notes, and snippets.

@codetycon
Last active October 23, 2023 11:14
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save codetycon/4b4f51b746052ffd84e8103f4679ccfe to your computer and use it in GitHub Desktop.
Save codetycon/4b4f51b746052ffd84e8103f4679ccfe to your computer and use it in GitHub Desktop.
How to upgrade Google Chrome from Command Line on Ubuntu
# If you do not have a Google Chrome installed in your PC then follow below article for insall
# via http://askubuntu.com/questions/510056/how-to-install-google-chrome
#here are the steps to upgrade google chrome:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
# Update
sudo apt-get --only-upgrade install google-chrome-stable
@Saptaktdk
Copy link

Thanks, it worked for me... 💯

@codetycon
Copy link
Author

I'm glad it worked

@tobias-barakaa
Copy link

Hey thanks, It works like magic

@Dushyant-thegreat
Copy link

thanks man

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment