标签:
新装了一套Fedora 20操作系统,又要开始配置yum了。下面总结以下步骤:
1、下载国内比较快的yum源
推荐163的yum源,sohu的yum源也不错,我一般就装第一个,安装163 yum源主页上的使用帮助下载repo文件并拷贝到/etc/yum.repos.d/。
2、下载开源软件库
按照如下两个地址去下载,这两个是Fedora 20(X86_64版本)的著名的第三方yum源,其他版本的以此类推:
http://download1.rpmfusion.org/free/fedora/releases/20/Everything/x86_64/os/rpmfusion-free-release-20-1.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/releases/20/Everything/x86_64/os/rpmfusion-nonfree-release-20-1.noarch.rpm
安装一下,然后建立yum缓存:
rpm -ivh rpmfusion-free-release-20-1.noarch.rpm rpm -ivh rpmfusion-nonfree-release-20-1.noarch.rpm
yum clean all yum makecache
3、安装yum插件
[root@localhost Downloads]# wget http://wilmer.gaast.net/downloads/axel-1.0b.tar.gz [root@localhost Downloads]# tar zxvf axel-1.0b.tar.gz [root@localhost Downloads]# cd axel-1.0b [root@localhost Downloads]# ./configure --i18n=1 [root@localhost Downloads]# make [root@localhost Downloads]# make install [root@localhost Downloads]# wget http://cnfreesoft.googlecode.com/svn/trunk/axelget/axelget.conf [root@localhost Downloads]# wget http://cnfreesoft.googlecode.com/svn/trunk/axelget/axelget.py [root@localhost Downloads]# cp axelget.conf /etc/yum/pluginconf.d/ [root@localhost Downloads]# cp axelget.py /usr/lib/yum-plugins/
国内环境下google经常无法访问,如果axelget的两个配置文件不能下载,可以上百度找找看。
[root@localhost yum.repos.d]# yum install yum-fastestmirror
4、安装Chrome
[google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64 enabled=1 gpgcheck=1
安装chrome命令:
yum install google-chrome-stable
也可以从google官网下载chrome安装包,不过安装的时候需要处理很多依赖文件,所以还是要用yum进行安装。
5、安装软件包公钥
在安装那些未签名的软件包时有可能提示系统尚未安装公钥,此时必须导入它们的 GPG 密匙,打开终端并且输入如下命令:
rpm --import /etc/pki/rpm-gpg/*
这个命令会导入此目录下的所有公钥,包括fedora和updates的,第三方库的公钥也在里面。
标签:
原文地址:http://www.cnblogs.com/kuliuheng/p/4182109.html