Install Chrome on Linux Mint
source: https://www.digitalocean.com/community/tutorials/install-chrome-on-linux-mint
Chrome (Official):
- Key:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- Repo:
sudo add-apt-repository "deb http://dl.google.com/linux/chrome/deb/ stable main"
- Update:
sudo apt update
- Install:
sudo apt install google-chrome-stable
- Run: type in the terminal
google-chrome
or just find it in your applications menu
Chromium (Open Source):
sudo apt install chromium-browser
Run: Just find it in your applications menu
Uninstall (Chrome):
sudo apt remove google-chrome-stable
Notes:
- Open terminal for commands.
- Type
y
when prompted for confirmation.