欢迎来到代码驿站!

Shell

当前位置:首页 > 脚本语言 > Shell

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

时间:2020-11-10 15:52:25|栏目:Shell|点击:

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

上一篇:getcwd cannot access parent directories错误解决方法

栏    目:Shell

下一篇:Shell脚本判断Linux系统是32位还是64位的几种方法分享

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

本文地址:http://www.codeinn.net/misctech/21056.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有