YUM源设置

1、 设置本地yum源(需插入光盘)

  mkdir /mnt/cdrom

  mount -t iso9660 /dev/cdrom /mnt/cdrom

  cd /etc/yum.repos.d/

  cp -r CentOS-Base.repo CentOS-Base.repo.bak

  cat CentOs-Base.repo

    [cdrom_yum]

    name=cdrom

    baseurl=file:///mnt/cdrom

    enabled=1

    gpgcheck=0

  yum clean all       清除yum缓存

  yum makecache       新建yum缓存

  yum repolist cdrom_yum  查看[cdrom_yum]仓库是否启用

 

2、 设置网络yum源

  例:阿里yum源

  cd /etc/yum.repos.d/

  mv CentOS-Base.repo CentOS-Base.repo.bak

  wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

  yum makecache

 

推荐几个YUM源

网易:http://mirrors.163.com/.help/

中科大:https://lug.ustc.edu.cn/wiki/mirrors/help

阿里云:https://opsx.alibaba.com/mirror

清华大学:https://mirrors.tuna.tsinghua.edu.cn/

浙江大学:http://mirrors.zju.edu.cn/

中国科技大学:http://centos.ustc.edu.cn/

 

Yum常用命令

yum search lsof    查找一个软件包或命令

yum install lsof   安装一个软件包

yum update        更新所有软件包

yum update lsof   更新指定软件包

yum check-update   检查可用的软件包更新

yum remove lsof   删除一个软件包

yum list          列出所有可安装的软件包

yum clean all     清除所有缓存数据

yum makecache     新建yum缓存

yum deplist lsof   列出一个包的依赖关系

yum reinstall lsof 重新安装一个软件包

 

posted @ 2019-08-26 16:45  冲冲、冲  阅读(102)  评论(0编辑  收藏  举报