Created
May 30, 2020 01:22
-
-
Save xettri/10558087f31cc9dc0d6810643b6a6699 to your computer and use it in GitHub Desktop.
Command to upgrade chrome in Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
# Install | |
sudo apt-get install google-chrome-stable | |
# Update | |
sudo apt-get --only-upgrade install google-chrome-stable | |
# If Error (doesn't support architecture 'i386') | |
# you should edit /etc/apt/sources.list.d/google-chrome.list for 64bit | |
# deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment