Linux下安装chrome

2021-05-28 10:14:31 浏览数 (1)

一.Centos系列

1.配置yum下载源 vim /etc/yum.repos.d/chrome.repo

  1. [google-chrome]
  2. name=google-chrome
  3. baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
  4. enabled=1
  5. gpgcheck=1
  6. gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

建立缓存 yum clean all yum makecache

2.安装google chrome浏览器 yum -y install google-chrome-stable --nogpgcheck

3.测试,查看是否有信息输出 google-chrome --headless --disable-gpu --dump-dom --no-sandbox https://www.baidu.com

二.Ubuntu系列

1.安装chrom apt install chromium-browser

2.测试,查看是否有信息输出 chromium-browser --headless --disable-gpu --dump-dom --no-sandbox https://www.baidu.com

0 人点赞