How to install or uninstall Google Chrome in Ubuntu 16.04
Since you can't install Google Chrome directly from Ubuntu Software center, check out the simple steps to install Google Chrome on an Ubuntu desktop directly like you do in Windows... albiet with a few differences!
Google Chrome is a freeware and can easily be downloaded and installed on a Ubuntu machine. It is just that this cannot be done from the Ubuntu Software Center and rather has to be done by downloading the installer locally and then installing it, all this will command line. Don't fret though, you don't need to know any technical terms or coding to do this. Just follow a few simple steps mentioned below and before you know it Google Chrome browser will be open on your system ready to serve. Before we proceed, you need to know that Google Chrome can be installed only on 64-bit computers. To check if your system is 64 bit or not, click on the Power button at the top right corner and go to "About This Computer". The Overview section will show you the basic details of your system which will also include the details about the bit version of your PC.Install Google Chrome in Ubuntu 16.04
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
You should get a response "OK" as shown in the image.
This won't give you any return response but that is okay.sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
You Terminal should something like the image below. The downloaded file will be around 56 MB and will install itself once the second command is issued. sudo apt-get install google-chrome-stable
You browser should like the image below. google-chrome
If you plan to use Chrome frequently then you should also consider adding the shortcut for it in the Unity bar (side menu bar). To do this, when you the browser is launched from the Terminal, you should be able to see the Chrome logo in the Unity bar. Right click on it and select the "Lock to Launcher" option.Uninstall Google Chrome from Ubuntu 16.04
To uninstall Google Chrome from your Ubuntu machine just enter 2 commands in the Terminal:sudo apt-get purge google-chrome-stable
sudo apt-get autoremove
The first command will do the uninstallation of Google Chrome but will leave some configuration related files on your system. The left over files can take some space, if you don't plan on installing the Chrome browser again soon then you can issue the second command too which will take care of the left over files and will delete it from the system doing a clean uninstall.
When I use the last command, the terminal shows unmet dependencies, what to do after that?