zoukankan      html  css  js  c++  java
  • Ubuntu 12.04 怎样安装 Google Chrome

    方法一:

    http://www.360doc.com/content/14/0723/19/4338_396584130.shtml

    方法2:

    How to Install Google Chrome Web Browser in Ubuntu 14.04 LTS Trusty Tahr

    SHARE :Share on Google+104Share on Facebook18Tweet about this on Twitter6Share on StumbleUpon1Pin on Pinterest0Share on Reddit2Share on LinkedIn1

    google chrome ubuntu 14.04

    This tutorial describes how to install Google Chrome web browser in Ubuntu 14.04 LTS trusty tahr. this tutorial also work on ubuntu flavor (Edubuntu, Kubuntu, Lubuntu, Ubuntu Gnome, Ubuntu Kylin, Ubuntu Studio, Xubuntu) and Ubuntu derivatives ( Linux Mint, elementay OS, Zorin OS, etc).

    As you may already know, Google Chrome is a free web browser developed by Google and support for major platform such as ( Linux, Android, Windows and Mac OS). It’s one of the popular and widely used web browser by most of the internet users.

    There are two method to install Google Chrome web browser in Ubuntu Desktop. First methode : Directly download *.deb package from google chrome download page. Second method : Installing google chrome through official Google Chrome PPA.

    #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 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
  • 相关阅读:
    队列的实现
    前端的数据结构
    有关es6的模块化
    jQuery---事件的执行顺序
    短网址生成和还原工具使用教程
    【01】HTML_day01_03-HTML常用标签
    JS中变量、作用域的本质,定义及使用方法
    JS 重载父页面
    搞懂Nginx一篇文章就够了
    重复的子字符串
  • 原文地址:https://www.cnblogs.com/senior-engineer/p/4793952.html
Copyright © 2011-2022 走看看