mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-23 21:20:42 +08:00
43 lines
2.2 KiB
Markdown
43 lines
2.2 KiB
Markdown
|
[scusjs占坑]每日Ubuntu技巧 - 怎么安装谷歌Chrome浏览器
|
|||
|
================================================================================
|
|||
|
对于刚刚开始使用Ubuntu并想安装谷歌Chrome浏览器的新用户来说,这篇文章将是最快的方法。有许多安装在Ubuntu上安装Chrome的方法。一些方法喜欢直接在[谷歌Chrome下载页面][1]获得**deb**进行安装。
|
|||
|
|
|||
|
另一些方法喜欢通过来自Chromium的PPA进行安装。我更喜欢通过**wget**命令下载安装。通过命令行的方式是最快的,也是这篇文章想要告诉你的。
|
|||
|
|
|||
|
可能你已经知道,谷歌Chrome已经完成屌丝的逆袭成为最流行的网络浏览器之一。实际上,这也是我最喜欢的浏览器。我最开始使用的是Internet Explorer,然后换成Firefox,最后又换成了谷歌Chrome。
|
|||
|
|
|||
|
我并不是想让你换浏览器,但是如果你想要在Ubuntu下安装Chrome,那么就去安装它吧。
|
|||
|
|
|||
|
要开始安装Chrome,你有一些选择。首先你可以使用Firefox访问[谷歌Chrome下载页面][1]然后下载一个拷贝。如果你不喜欢使用命令行,你可以使用这个方法。
|
|||
|
|
|||
|
对于喜欢使用终端命令行的用户来说,使用以下命令来下载。
|
|||
|
|
|||
|
cd /tmp
|
|||
|
|
|||
|
对于谷歌Chrome**32位**版本,使用如下链接。
|
|||
|
|
|||
|
|
|||
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
|
|||
|
|
|||
|
对于64位版本可以使用如下链接下载。
|
|||
|
|
|||
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|||
|
|
|||
|
下载完后,运行如下命令安装。
|
|||
|
|
|||
|
sudo dpkg -i google-chrome*; sudo apt-get -f install
|
|||
|
|
|||
|
然后就搞定了!安装完成后,到Unity Dash搜索Chrome就可以启动它了。
|
|||
|
|
|||
|
Enjoy!
|
|||
|
|
|||
|
--------------------------------------------------------------------------------
|
|||
|
|
|||
|
来自: http://www.liberiangeek.net/2013/10/daily-ubuntu-tips-install-google-chrome-browser/
|
|||
|
|
|||
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
|
|||
|
|
|||
|
译者:[SCUSJS](https://github.com/scusjs) 校对:[校对者ID](https://github.com/校对者ID)
|
|||
|
|
|||
|
[1]:https://www.google.com/intl/en/chrome/browser/#eula
|