zoukankan      html  css  js  c++  java
  • Create local metadata resource of yum

    Today, I need install an oracle software for a machine whose os is Linux.

    As we all know, installing oracle database software need installing additional packages. In order to install these package easily, i create a local yum resource.

    As following:

    We only assume that mount cdrom to media
    /dev/hdc              3.3G  3.3G     0 100% /media
    mkdir /yum
    cp -r /media/* /yum
    

     

    install tool package:
    [root@test ~]# rpm -ivh /yum/Server/createrepo-0.4.11-3.el5.noarch.rpm
    warning: /yum/Server/createrepo-0.4.11-3.el5.noarch.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
    Preparing...                ########################################### [100%]
       1:createrepo             ########################################### [100%]
     
    Generate RPM package service database
    [root@test ~]# createrepo -g /yum/Server/repodata/comps-rhel5-server-core.xml /yum/Server/
    2348/2348 - gnome-keyring-manager-2.16.0-3.el5.i386.rpm                         m
    Saving Primary metadata
    Saving file lists metadata
    Saving other metadata
    [root@test ~]# createrepo -g /yum/VT/repodata/comps-rhel5-vt.xml /yum/VT/
    36/36 - Virtualization-mr-IN-5.2-11.noarch.rpm                                 
    Saving Primary metadata
    Saving file lists metadata
    Saving other metadata
    [root@test ~]# createrepo -g /yum/Cluster/repodata/comps-rhel5-cluster.xml /yum/Cluster
    32/32 - Cluster_Administration-hi-IN-5.2-1.noarch.rpm                          
    Saving Primary metadata
    Saving file lists metadata
    Saving other metadata
    [root@test ~]#
    [root@test ~]# createrepo -g /yum/ClusterStorage/repodata/comps-rhel5-cluster-st.xml /yum/ClusterStorage/
    39/39 - Global_File_System-zh-TW-5.2-1.noarch.rpm                              
    Saving Primary metadata
    Saving file lists metadata
    Saving other metadata
    Lastly, editor the local repos file
      
    [root@heng /]# vi /etc/yum.repos.d/credit.repo
    [base]
    name=Ray 
    baseurl=file:///yum/Server
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
    [rhel-VT]
    name=Red Hat Enterprise Linux $releasever - $basearch - Debug
    baseurl=file:///yum/VT
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
    [rhel-Cluster]
    name=Red Hat Enterprise Linux $releasever - $basearch - Debug
    baseurl=file:///yum/Cluster
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
    [rhel-ClusterStorage]
    name=Red Hat Enterprise Linux $releasever - $basearch - Debug
    baseurl=file:///yum/ClusterStorage
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
  • 相关阅读:
    推荐系统(10)—— 进化算法、强化学习
    Throttle Debounce 总结
    文件点击下载
    Mongodb安装及启动正确姿势
    事务的ACID是指什么?
    sqlserver 获取时间字段 每月最后一天 分组(分区)最后一条的记录
    echarts map js或json 地图数据下载
    sqlserver 字段 逗号分隔分组 多行数据
    windows10 中文输入法 增加美式键盘 导致 系统部分语言变成英文
    excel 合并相同内容的单元格 vba
  • 原文地址:https://www.cnblogs.com/keanuyaoo/p/3285491.html
Copyright © 2011-2022 走看看