新装了一套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插件
3.1 axel插件
yum默认采用的是单线程下载方式,而axel采用多线程下载,作为yum下载工具可以加快下载速度。
[[email protected] Downloads]# wget http://wilmer.gaast.net/downloads/axel-1.0b.tar.gz [[email protected] Downloads]# tar zxvf axel-1.0b.tar.gz [[email protected] Downloads]# cd axel-1.0b [[email protected] Downloads]# ./configure --i18n=1 [[email protected] Downloads]# make [[email protected] Downloads]# make install [[email protected] Downloads]# wget http://cnfreesoft.googlecode.com/svn/trunk/axelget/axelget.conf [[email protected] Downloads]# wget http://cnfreesoft.googlecode.com/svn/trunk/axelget/axelget.py [[email protected] Downloads]# cp axelget.conf /etc/yum/pluginconf.d/ [[email protected] Downloads]# cp axelget.py /usr/lib/yum-plugins/
国内环境下google经常无法访问,如果axelget的两个配置文件不能下载,可以上百度找找看。
3.2 fastmirror插件
fastmirror插件可以让yum自动选择较快的yum源进行下载。安装的时候可以直接用yum:
[[email protected] yum.repos.d]# yum install yum-fastestmirror
4、安装Chrome
在/etc/yum/yum.repos.d下建立google-chrome.repo文件,内容如下:
[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的,第三方库的公钥也在里面。
时间: 2024-09-30 11:42:09