linux服务搭建---yum源服务搭建

yum源服务
1.
本地yum
2.yum
源不在本地     
    1
  ftp服务器
    2
  nfs服务器


1.
本地yum
前提:    linux系统   找到一个相应版本的ISO镜像

1>
找到ISO镜像
   
ISO镜像内的安装包挂出来
   
    cd /root/Desktop
    ls rhel5.5.iso
    mount -o loop  /root/Desktop/rhel5.5.iso     /mnt
   
    df -h   
查看是否挂载成功
    /root/Desktop/rhel5.5.iso
                      2.9G 2.9G     0 100% /mnt
    ls  /mnt
    //   Server   
装机时基本功能安装包的集合体(最主要 95%)
    //Cluster   ClusterStorage   VT

   
编译一个yum配置文件
    rm -rf    /etc/yum.repos.d/*
    //    /etc/yum.repos.d/xxx.repo     
:xxx  随便的一个名字,但是后缀必须为repo
    vim   /etc/yum.repos.d/xxx.repo
    //+++++++++++++++++++++++++

    [basename]     //==> 
你自己的yum源的名字,可以随意
    baseurl=file:///mnt/Server
    enable=1       //==> rhel5  enable=1   rhel6 enabled=1
    gpgcheck=0     //
所传输的数据没有经过任何的校验
   
保存退出

    yum clean all   (
可能会有些warning,error)
    yum list
   
如果看到#####加载项,就本地yum源塔配成功

    yum
源安装输件包
   
   
先查找
    yum -y search  xxxx

    yum -y install  xxxx

   
删除软件包(很严重,最好不要轻意
)
    yum -y remove  xxxx

你可能感兴趣的:(linux服务搭建---yum源服务搭建)