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
by ncode · April 22, 2014
104
18
6
1
0
2
1
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
Ubuntu 12.04 怎样安装 Google Chrome的更多相关文章
- Ubuntu 12.04上安装 MongoDB并运行
Ubuntu 12.04上安装 MongoDB并运行 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 在Terminal输入 sudo apt-key ...
- Angularjs学习---angularjs环境搭建,ubuntu 12.04下安装nodejs、npm和karma
1.下载angularjs 进入其官网下载:https://angularjs.org/,建议下载最新版的:https://ajax.googleapis.com/ajax/libs/angular ...
- 如何在ubuntu 12.04 中安装经典的 GNOME桌面
这次介绍的是如何在ubuntu 12.04 中安装经典的 GNOME桌面,默认的 Ubuntu 12.04 默认unity桌面,一些用户不喜欢 Unity 桌面,所以想找回昔日的经典Gnome桌面. ...
- 对<< ubuntu 12.04编译安装linux-3.6.10内核笔记>>的修正
前题: 在前几个月的时候,写了一篇笔记,说的是kernel compile的事情,当时经验不足,虽说编译过了,但有些地方写的有错误--因为当时的理解是有错误的.今天一一更正,记录如下: 前文笔记链接: ...
- Ubuntu 12.04 下安装 Eclipse
方法一:(缺点是安装时附加openjdk等大量程序并无法去除,优点是安装简单) $ sudo apt-get install eclipse 方法二:(优点是安装内容清爽,缺点是配置麻烦)1.安装JD ...
- Ubuntu 12.04上安装R语言
Ubuntu 12.04上安装R语言 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ R的安装 sudo gedit /etc/apt/sources. ...
- Ubuntu 12.04上安装HBase并运行
Ubuntu 12.04上安装HBase并运行 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 一.HBase的安装 在官网上下载HBase-1.1.2 ...
- Ubuntu 12.04上安装MySQL并运行
Ubuntu 12.04上安装MySQL并运行 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 安装MySQL数据库 sudo apt-get upda ...
- Ubuntu 12.04上安装Hadoop并运行
Ubuntu 12.04上安装Hadoop并运行 作者:凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 在官网上下载好四个文件 在Ubuntu的/home/w ...
随机推荐
- 网络模块(net, http)小解
net模块可用来创建TCP服务器来接收网络请求,它提供了创建客户端以及服务端的方法 服务端: 创建服务器: net.createServer([,options], connectionListene ...
- TextView赋值int型,并显示
textview赋值int型采用text.setText(FPS+""); FPS为int型变量 或者在thread线程需要在主Activity中显示文字,可以调用: runOnU ...
- validator验证
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xht ...
- InnoDB表要建议用自增列做主键
InnoDB引擎表是基于B+树的索引组织表(IOT): 每个表都需要有一个聚集索引(clustered index): 所有的行记录都存储在B+树的叶子节点(leaf pages of the tre ...
- Android中的Fragment页面切换和selector选择器
效果如图: 提示:下面是用的整个的图片 下面看代码: //--------------------这是主页面布局文件----------------------- <?xml version=& ...
- python 自动认证登录
import urllib import base64 import urllib2 def auto_login(urllink,username,password): authstr = 'Bas ...
- 在Java 线程中返回值的用法
http://icgemu.iteye.com/blog/467848 在Java 线程中返回值的用法 博客分类: Java Javathread 有时在执行线程中需要在线程中返回一个值:常规中我们 ...
- LeetCode OJ 92. Reverse Linked List II
Reverse a linked list from position m to n. Do it in-place and in one-pass. For example:Given 1-> ...
- 经典.net面试题目(3)
1. asp.net中web应用程序获取数据的流程: A.Web Page B.Fill C.Sql05 D.Data Sourse E.DataGrid F.DataSet G.Selec ...
- asp.net 基础
前台HTML,javascript,后台C# 代码能不在后台写,就不在后台写 WebSite和WebApplication的区别 1)当改变后台代码时,WebApplication需重启浏览器或者重新 ...