Ubuntu 13.04 怎样安装 Google Chrome

来源:互联网 发布:2017软件退税政策 编辑:程序博客网 时间:2024/05/01 13:06

今天我在安装Ubuntu后,因为习惯了Chrome,想安装一个Google Chrome浏览器在Ubuntu中,然后遇到问题了。先说说正确的安装方法。

1、在Google chrome上面下载Chrome浏览器。选择正确的版本,我电脑是64位的所以选择的是【64 bit .deb (适用于 Debian/Ubuntu)】。

google-Chrome

2、Ctrl+Alt+T 打开终端,进入你刚刚下载好的Chrome包存放的文件夹(我是直接下载到默认位置的):

$ cd ~/Downloads

3、使用dpkg命令安装Chrome包:

$ sudo dpkg -i google-chrome-stable_current_amd64.deb

不出意外会出现类似以下的错误提示,原因是因为依赖包的问题:

Selecting previously unselected package google-chrome-stable.(Reading database ... 170670 files and directories currently installed.)Unpacking google-chrome-stable (from google-chrome-stable_current_amd64.deb) ...dpkg: dependency problems prevent configuration of google-chrome-stable: google-chrome-stable depends on libxss1; however:  Package libxss1 is not installed.dpkg: error processing google-chrome-stable (--install): dependency problems - leaving unconfiguredProcessing triggers for man-db ...Processing triggers for bamfdaemon ...Rebuilding /usr/share/applications/bamf.index...Processing triggers for desktop-file-utils ...Processing triggers for gnome-menus ...Errors were encountered while processing: google-chrome-stable

4、找到问题是因为没有安装这个libxss1的依赖包,我们可以用很简单的命令安装这个依赖包:

$ sudo apt-get install -f

5、完成上述操作,提示安装的时候输入y,回车继续安装,会出现下面这样的提示,Chome就应该安装好啦!

Reading package lists... DoneBuilding dependency treeReading state information... DoneCorrecting dependencies... DoneThe following extra packages will be installed:libxss1The following NEW packages will be installed:libxss10 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.1 not fully installed or removed.Need to get 0 B/8,646 B of archives.After this operation, 77.8 kB of additional disk space will be used.Do you want to continue [Y/n]? ySelecting previously unselected package libxss1.(Reading database ... 170774 files and directories currently installed.)Unpacking libxss1 (from .../libxss1_1%3a1.2.1-2_amd64.deb) ...Setting up libxss1 (1:1.2.1-2) ...Setting up google-chrome-stable (27.0.1453.110-r202711) ...update-alternatives: using /usr/bin/google-chrome to provide /usr/bin/x-www-browser (x-www-browser) in auto mode.update-alternatives: using /usr/bin/google-chrome to provide /usr/bin/gnome-www-browser (gnome-www-browser) in auto mode.Processing triggers for libc-bin ...ldconfig deferred processing now taking place

需要注意的是,安装软件之前确保你已经做过更新和升级如果没有更新到最新请参考以下更新:

$ sudo apt-get update# 然后:$ sudo apt-get upgrade转载:http://veryb.us/share/304.html
原创粉丝点击