I am installing Google chrome in my Ubuntu 16.04 system.
I followed following steps.
1) Add Key:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
2) Set repository:
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list
3) Install package:
sudo apt-get update
sudo apt-get install google-chrome-stable
This installation done successfully.
NOW the issue is that when i open google-chrome i can not see the open window of browser, But in left bar i can see that the google chrome is open.
Help me to solve this
Thank you
uname -a
? – kevy Sep 28 '17 at 10:23rm -rf ~/.config/google-chrome/*; google-chrome
. – kevy Sep 28 '17 at 11:06