Google Chrome didn't add apt source list - Ask Ubuntu
so installed latest chrome in new ubuntu 16.10 installation. checked "additional software" source list couldn't find entry google chrome creates. @ point, google chrome won't auto-updated.
is there can give me correct source list entry stable channel of google chrome? or can make google deb add automatically again?
thanks!
from google chrome download page:
note: installing google chrome add google repository system automatically keep google chrome date. if don’t want google's repository, “
sudo touch /etc/default/google-chrome
” before installing package.
so fix it:
remove file
sudo rm /etc/default/google-chrome
reconfigure chrome package add repository
sudo dpkg-reconfigure google-chrome-stable
check using
grep -r google /etc/apt/sources.list.d/
, no output reinstall it.sudo dpkg -r google-chrome-stable sudo dpkg -i google-chrome-stable_current_*.deb
otherwise add manually
64bit:
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
32bit:
echo "deb [arch=i386] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
Comments
Post a Comment