当前位置: 移动技术网 > 网络运营>服务器>Linux > Ubuntu、Linux Mint一键安装Chrome浏览器的Shell脚本分享

Ubuntu、Linux Mint一键安装Chrome浏览器的Shell脚本分享

2017年12月12日  | 移动技术网网络运营  | 我要评论
把下面的脚本保存为xxx.sh,然后 sudo sh xxx.sh 复制代码 代码如下: wget -q -o - https://dl-ssl.google.com/

把下面的脚本保存为xxx.sh,然后 sudo sh xxx.sh

复制代码 代码如下:

wget -q -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update
#下面是稳定版
#sudo apt-get -y install google-chrome-stable
#下面是beta版
sudo apt-get -y install google-chrome-beta
#下面是不稳定版
#sudo apt-get -y install google-chrome-unstable

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网