yum链接外网的缺点:
how
如何实现yum私有仓库的搭建?
仓库的组成部分:
#systemctl disbale --now firewalld //关闭防火墙
#nano /etc/selinux/config
#SELINUX=disabled
#yum -y install httpd //安装搭建工具
#cd /var/www/html/
#ls
#mkdir centos/{7,8} -pv //创建centos7和8,并显示路径
#tree centos/
#mount /dev/sr1 /car/www/html/centos/7
#ls /var/www/html/entos/7 //进入该目录
#
#vim /etc/yum.repos.d/base.repo //设置yum配置
#
#
#yum list vsftpd //查看yum是否存在“vsftpd”工具
#yum install vsftpd
下载epel源
#cd /var/www/html
#dnf reposync --repoid-epel --download-metadata -p /var/www/html
#tree epel/ //显示epel下载
yum源包的缺点
why
how
yum history
yum history info/undo + history中的数字
yum编译安装
#yum provide mime.types
本文来自博客园,作者:林清|Julien,转载请注明原文链接:https://www.cnblogs.com/Julien1021/p/16255411.html