ubuntu 安装 chrome

来源:互联网 发布:数据统计培训 编辑:程序博客网 时间:2024/06/03 19:34

出处: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

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

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 updatesudo 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.

0 0
原创粉丝点击