Skip to main content

How to create local RHEL DVD repository for package installations ?

This blog tells you how to create a local repository from a RHEL installer DVD iso image.


Firstly please note that  RHEL is not a free software.  To get access to the fully up-to-date repositories (RHN) a  paid subscription is required.Without this subscription it will not be possible to get security updates and the newest versions of packages. An alternative for using RHEL would be CentOSor Scientific Linux. Both are free and almost identical to RHEL. The below steps should only be used for testing, studying or evaluation purposes. The steps below are based on RHEL server 6.4 but the basics are the same for other versions.

Pre Conditions prior performing the following setup steps.
- RHEL installed system,
- ~4-8 GB free space on disk.


All the below steps are to be executed with root privileges.

1. A directory needs to be created which will contain the repository with following command:
    $ mkdir /mnt/rhel_repo

2. Mount the DVD disk or iso image with following command.
    
    $ mount /dev/dvd /media
     
    If an image is used instead of a DVD you can mount it as follows (with following command):
    
    $ mount -o loop /path/to/rhel.6.4.iso /media

3. Copy the contents from the DVD to the newly created directory with following command:
  
    $ cp -ar /media/. /mnt/rhel_repo/

4. Set up the system to use the freshly created repository with following command:
    $ cd /etc/yum.repos.d/
    $ rm *.repo
    $ vi rhel64dvd.repo


    # add the following information:

    [rhel-dvd-server]
     name=Red Hat Enterprise Linux - DVD Server Repository
     baseurl=file:///mnt/rhel_6.4_dvd/Server
     enabled=1
     gpgkey=file:///mnt/rhel_6.4_dvd/RPM-GPG-KEY-redhat-release
     gpgcheck=1


     [rhel-dvd-lb]
     name=Red Hat Enterprise Linux - DVD Load Balancer Repository
     baseurl=file:///mnt/rhel_6.4_dvd/LoadBalancer
     enabled=1
     gpgkey=file:///mnt/rhel_6.4_dvd/RPM-GPG-KEY-redhat-release
     gpgcheck=1


      [rhel-dvd-ha]
      name=Red Hat Enterprise Linux - DVD High Availability Repository
      baseurl=file:///mnt/rhel_6.4_dvd/HighAvailability
      enabled=1
      gpgkey=file:///mnt/rhel_6.4_dvd/RPM-GPG-KEY-redhat-release
      gpgcheck=1

5.  Disable RHN and activate DVD repository:
      $ vi /etc/yum/pluginconf.d/rhnplugin.conf
      # make sure enabled is set to 0 (enabled = 0)


6. Now run the following command in Terminal.
    $ yum clean all

    Loaded plugins: product-id, security, subscription-manager
    This system is not registered to Red Hat Subscription Management. You can use subscription-             manager to register.
    Cleaning repos: rhel-dvd-ha rhel-dvd-lb rhel-dvd-server
    Cleaning up Everything


    $ rpm --import /mnt/rhel_6.4_dvd/RPM-GPG-KEY-redhat-release

5. Now following yum update command to update the yum repositories.

    $ yum update
  
    Output :
    Loaded plugins: product-id, security, subscription-manager
   This system is not registered to Red Hat Subscription Management. You can use subscription-             manager to register.
    Setting up Update Process
    No Packages marked for Update


    From this point on you can use yum to search, install and remove packages that are available on         the local system.

    The following message will still be visible but it can be ignored.
   
    This system is not registered to Red Hat Subscription Management.

Comments

Popular posts from this blog

How to find firmware or boot ROM version in Mac OS X

Firmware and boot ROM version of your mac can be found in two ways. Way 1 : 1. From "Apple" menu , choose "About This Mac" menu item. 2. Click " More Info " to open "System Profiler" application. 3. Under Contents -> Select Hardware Tree item. On the right side panel Under hardware overview section, we can see Boot ROM Version and SMC (Firmware) Version. Way 2 : Run the below command in terminal to get boot ROM version and SMC(firmware) version : $ system_profiler SPHardwareDataType | grep -i "Version" | awk -F ':' '{print $1 $2}'

How to extract signing certificates from macOS binary files

Code signing is a macOS security technology that you use to certify that an app was created by you. Once an app is signed, the system can detect any change to the app—whether the change is introduced accidentally or by malicious code. As Apple Developer site says ( click here for more details  on code signing) : code signing allows the operating system to: Ensure that a piece of code has not been altered since it was signed.  The system can detect even the smallest change, whether it was intentional (by a malicious attacker, for example) or accidental (as when a file gets corrupted). When a code signature is intact, the system can be sure the code is as the signer intended. Identify code as coming from a specific source (a developer or signer).  The code signature includes cryptographic information that unambiguously points to a particular author. Determine whether code is trustworthy for a specific purpose.  Among other things, a developer can use a code signature to s

What are the useful nvram settings in macOS ?

The OS X boot arguments are useful for troubleshooting problems with system startup and how the system behaves when running. sudo nvram boot-args="-v" :  This command will set the system to always boot to verbose mode, so we do not need to hold Command + V at system startup. sudo nvram boot-args="-x" :  This will set the system to always boot into Safe Mode. sudo nvram boot-args="-s" :  This command will boot the system into single user mode without needing to hold Command-S at system startup. sudo nvram boot-args="iog=0x0"  :   when you close the display but connect the system to an external monitor and keyboard the system will stay awake. After running this command, when connecting an external monitor, the internal display will be disabled, which can be beneficial in some situations such as those where you are mirroring your desktop but wish to run the external display at a higher resolution than your laptop can run. sudo nvram b