1.wget

32bits: wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
64bits: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

2.添加PPA

  a.下载签名秘钥

    wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add

  b.在xxx.list文本后添加源(?个人理解, 欢迎指正,此方法比较适合不熟悉vim的linux使用者)

    sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'

  c.更新一下源

    sudo apt-get update

  d.然后就可以直接apt-get啦   

    sudo apt-get install google-chrome

  e.亦可以安装chrome的beat版

    sudo apt-get install google-chrome-beta

  f.或者是其unstable版

    sudo apt-get install google-chrome-unstable

相关文章:

  • 2021-12-29
  • 2022-01-24
  • 2022-12-23
  • 2021-11-17
  • 2021-07-21
  • 2021-10-26
  • 2021-07-22
  • 2022-02-08
猜你喜欢
  • 2022-12-23
  • 2021-08-25
  • 2022-02-05
  • 2021-11-15
  • 2022-12-23
  • 2022-01-16
  • 2021-09-24
相关资源
相似解决方案