首页 > 系统 > Linux > 正文

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

2019-10-26 18:44:55
字体:
来源:转载
供稿:网友

把下面的脚本保存为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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表