前提,centos可以连接外网
1、在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repo
vim /etc/yum.repos.d/google-chrome.repo
文件中添加以下内容:
[google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
2、安装 yum-utils (有点电脑可能已经安装过了)
yum install -y yum-utils
3、下载 chrome 包和依赖
yumdownloader --resolve --destdir /root/chrome/ google-chrome-stable --nogpgcheck
4、最后把 chrome 包和依赖打成压缩包
tar -zcvf /home/chrome.tgz -C /root/chrome
最终,在/home/可以找到chrome.tgz的压缩包,就是我们需要的。
原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/274953.html