Linux yum源详解

Posted longqin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux yum源详解相关的知识,希望对你有一定的参考价值。

默认从官网下载包(国内,雅虎,网易,阿里云)

【搜狐】http://mirrors.sohu.com/help/CentOS-Base-sohu.repo
【网易】http://mirrors.163.com/.help/CentOS6-Base-163.repo
【阿里】https://mirrors.aliyun.com/help/centos

 

更改yum源:

  进入目录:cd /etc/yum.repos.d

  备份文件:mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

  下载文件:curl -O http://mirrors.163.com/.help/CentOS7-Base-163.repo

  修改名称:mv CentOs6-Base-163.repo CentOS-Base.repo

  清除缓存:yum clean all

  生成缓存:yum makecache

 

基本命令:

  yum <操作> [选项]

常用操作:

  清空所有缓存:clean all

  重新生成包信息缓存:makecache

  安装指定软件:install

  安装一组软件:groupinstall

  更新指定软件:update

  卸载指定软件:remove

  卸载一组软件:groupremove

  搜索指定软件:search

  显示所有软件:list

常用选项:

  默认确定操作:-y

  只下载不安装:--downloadonly

  指定下载目录:--downloaddir

以上是关于Linux yum源详解的主要内容,如果未能解决你的问题,请参考以下文章

Linux yum源详解

Linux 搭建YUM仓库源详解

linux 下yum软件库配置文件详解!.repo

linux 下yum软件库配置文件详解!.repo

CentOS7下的YUM源服务器搭建详解,过程写的很详细(转)

17Linux软件包管理工具yum详解