您现在的位置是:网站首页> 编程资料编程资料
Ubuntu、Linux Mint一键安装Chrome浏览器的Shell脚本分享_linux shell_
2023-05-26
348人已围观
简介 Ubuntu、Linux Mint一键安装Chrome浏览器的Shell脚本分享_linux 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
相关内容
- Ubuntu服务器配置apache2.4的限速功能shell脚本分享_linux shell_
- 简化shell终端命令输入的脚本式快捷键工具_linux shell_
- Shell脚本实现删除邮件队列_linux shell_
- Shell脚本美化登录界面装饰图(含农历)_linux shell_
- Shell脚本实现非法IP登陆自动报警_linux shell_
- Shell实现强制释放内存脚本分享_linux shell_
- Shell脚本实现批量下载资源并保留原始路径_linux shell_
- Shell脚本实现从文件夹中递归复制文件_linux shell_
- Shell脚本实现获取网页快照并生成缩略图_linux shell_
- Shell脚本实现简单分割字符串_linux shell_
