In the latest version of Ubuntu LTS 16.04 google chrome will not install. once downloaded software install opens when install is clicked it immediately fails. It worked fine with Ubuntu 14 LTS.
Asked
Active
Viewed 2.9k times
3 Answers
9
This is a known bug in the Ubuntu 16.04 LTS (GNOME) Software application, but you can install Google Chrome in an alternative way ... open a terminal and execute the following commands :
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
sudo apt-get install google-chrome-stable
cl-netbox
- 31,491
3
Alternatively you can install it with gdebi package installer
sudo apt-get install gdebi
then right click your .deb file and open with > select Gdebi package installer
Jonayad Rahman
- 1,336
-1
This is a known bug - but this workaround has worked for me successfully so far on 16.04.
http://www.omgubuntu.co.uk/2016/04/ubuntu-16-04-deb-software-install-error
cd /Downloads
sudo dpkg -i awesome_new_app.deb
sudo apt-get -f install
Hatt
- 103