Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux install Chrome #85

Open
itgoyo opened this issue Nov 8, 2018 · 1 comment
Open

Linux install Chrome #85

itgoyo opened this issue Nov 8, 2018 · 1 comment

Comments

@itgoyo
Copy link
Owner

itgoyo commented Nov 8, 2018

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

@itgoyo
Copy link
Owner Author

itgoyo commented Nov 8, 2018

linux mint 18 安装方式:要在root用户下

echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/chrome.list

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -

apt-get update

apt-get install google-chrome-stable

详细可以参考一下:https://winaero.com/blog/install-google-chrome-linux-mint-18/

@itgoyo itgoyo changed the title linux Linux install Chrome Nov 8, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant