summary

chrome broswer can't found in ubuntu14.04 default source list.To install chrome ,you must add source list by self . Today,i will give you two ways to install chrome on ubuntu14.04.one is by ppa(add google repository source list),second is source installation(donwload deb from official website).

method 1 :install chrome by adding google repository source:

$  wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 
$ sh -c 'echo "http://dl.google.com/linux/chrome/deb/ stable main">>/etc/apt/sources.list.d/google.list'
$ apt-get update && apt-get install google-chrome-stable

method 2:install chrome using deb

$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
$ dpkg -i google-chrome-stable_current_amd64.deb

相关文章:

  • 2021-06-24
  • 2021-09-27
  • 2022-12-23
  • 2021-10-07
  • 2021-07-09
  • 2021-09-15
  • 2021-11-01
  • 2022-02-18
猜你喜欢
  • 2022-01-16
  • 2021-12-12
  • 2022-01-26
  • 2022-12-23
  • 2021-08-30
  • 2021-08-16
  • 2021-06-24
相关资源
相似解决方案