您的位置:首页 > 其它

ubuntu 安装 chrome

2015-04-21 20:48 190 查看

出处:http://ubuntuportal.com/2014/04/how-to-install-google-chrome-web-browser-in-ubuntu-14-04-lts-trusty-tahr.html

#1 : Install Google Chrome by directly Download *.deb Package

Download google chrome for ubuntu from terminal with the following command:

For the 32-bit version of Google Chrome, use this command below.

wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb[/code] For the 64-bit version of Google Chrome, use this command below

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb[/code] Once downloaded, install google chrome with following command:

32 bit :

sudo dpkg -i google-chrome-stable_current_i386.deb

64 bit :

sudo dpkg -i google-chrome-stable_current_amd64.deb

#2 : Installing google chrome via PPA

To Installing google chrome in ubuntu from official Google Chrome PPA, open terminal then run the following command below to download and install the Signing Key from google linux repository:

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

After installing Signing Key, run the following command to add google chrome repository

sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'

Now run the following command to update your repository and install google chrome web browser:

sudo apt-get update
sudo apt-get install google-chrome

If you are interesting to try google chrome beta and unstable version you can install both by running the following command:

Google chrome beta version:

sudo apt-get install google-chrome-beta

Google chrome unstable version

sudo apt-get install google-chrome-unstable

We hope this tutorial will be helpful for you.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: