Linux---Google Chrome的安装
Google Chrome
Google Chrome是一个由Google开发的一个网页浏览器。“Chrome”是化学元素“铬”的英文名称;过去也用Chrome称呼浏览器的外框。相应的开源计划名为Chromium,其采用BSD许可证授权并开放源代码,但Google Chrome本身并非自由软件,也未开放源代码。因其市场占有率极高,性能卓越,相当受欢迎,所以有必要在这里给读者介绍Google Chrome的安装使用。
最近在学习linux,安装的是redhat,自带的firefox,由于不习惯firefox,想安装一个chrome,老师教了些方法,总结一下方便以后查找。
1.创建一个文件/etc/yum.repos.d/google.repo
2.如果是32位Linux系统:
[google-chrome]name=google-chrome - 32-bitbaseurl=http://dl-ssl.google.com/linux/linux_signing_key.pub
enabled=1gpgcheck=0gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
如果是64位的Linux系统:
[google-chrome]name=google-chrome - 64-bitbaseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64(此网址和实际可能有出入)
enabled=1gpgcheck=0gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
3.安装chrome
稳定版
yum install google-chrome-stable
测试版
yum install google-chrome-beta
非稳定版
yum install google-chrome-unstable
4.运行,默认的root用户无法运行chrome除非设置了-user-data-dir,具体做法是
首先把chrome放到桌面和panel里面,然后右键点属性吧它默认的命令行
opt/google/chrome/google-chrome %U
修改为
opt/google/chrome/google-chrome -user-data-dir %U
就可以在root用户使用chrome了
但采用yum本地源和上述方法安装出错时:我们可采用如下方法解决:
>[root@RedHat mnt]# cd /opt/cdrom/Packages/
[root@RedHat Packages]# yum install google-chrome-stable_current_i386.rpm
Loaded plugins: refresh-packagekit, rhnplugin
This system is not registered with RHN.
RHN support will be disabled.
base | 1.3 kB 00:00 ...
base/primary | 1.3 MB 00:00 ...
base 2680/2680
Setting up Install Process
Examining google-chrome-stable_current_i386.rpm: google-chrome-stable-10.0.648.134-77917.i386
Marking google-chrome-stable_current_i386.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package google-chrome-stable.i386 0:10.0.648.134-77917 set to be updated
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
google-chrome-stable
i386 10.0.648.134-77917 /google-chrome-stable_current_i386 83 M
Transaction Summary
================================================================================
Install 1 Package(s)
Upgrade 0 Package(s)
Total size: 83 M
Installed size: 83 M
Is this ok [y/N]: y
Downloading Packages:
warning: rpmts_HdrFromFdno: Header V4 DSA/SHA1 Signature, key ID 7fac5991: NOKEY
Public key for google-chrome-stable_current_i386.rpm is not installed
两种方法可以解决:
1.运行
[root@RedHat Packages]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
可解决;
2.运行
[root@RedHat Packages]# yum.conf 文件,把里面的gpgcheck=1改为gpgcheck=0。
注:方法2的效果很好
3.最好的解决办法:
加上"--nogpgcheck"参数
[root@RedHat Packages]# yum install google-chrome-stable_current_i386.rpm --nogpgcheck
注意:在32位的操作系统中智能安装32位的此软件,64位的也可以安装32的此软件。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。