7 Creating a Local Yum Repository Using an ISO Image
WARNING:
Oracle Linux 7 is now in Extended Support. See Oracle Linux Extended Support and Oracle Open Source Support Policies for more information.
Migrate applications and data to Oracle Linux 8 or Oracle Linux 9 as soon as possible.
Note:
The system must have sufficient storage space to host a full Oracle Linux Media Pack DVD image (approximately 4.1 GB for Oracle Linux 7.5).
To create a local yum repository (for example, if a system does not have Internet access):
-
On a system with Internet access, download a full Oracle Linux DVD image from the Oracle Software Delivery Cloud at https://edelivery.oracle.com/linux onto removable storage (such as a USB memory stick). For example,
V975367-01.iso
contains the Oracle Linux 7.5 Media Pack for x86 (64 bit).Note:
You can verify that the ISO was copied correctly by comparing its checksum with the digest value that is listed on
edelivery.oracle.com
, for example:sha1sum V975367-01.iso
4B08559B6176F701563C2E49553C89491C0F8F4E V975367-01.iso
-
Transfer the removable storage to the system on which you want to create a local yum repository, and copy the DVD image to a directory in a local file system.
cp /media/USB_stick/V975367-01.iso /ISOs
-
Create a suitable mount point, for example
/var/OSimage/OL7.5_x86_64
, and mount the DVD image on it.mkdir -p /var/OSimage/OL7.5_x86_64 sudo mount -o loop,ro /ISOs/V975367-01.iso /var/OSimage/OL7.5_x86_64
Note:
Include the read-only mount option (ro) to avoid changing the contents of the ISO by mistake.
-
Create an entry in
/etc/fstab
so that the system always mounts the DVD image after a reboot./ISOs/V975367-01.iso /var/OSimage/OL7.5_x86_64 iso9660 loop,ro 0 0
-
Disable all existing yum repositories.
In the
/etc/yum.repos.d
directory, edit any existing repository files and disable all entries by settingenabled=0
. If you have theyum-utils
package installed, as described in Using Yum Utilities to Manage Configuration, you can disable all repositories by running:sudo yum-config-manager --disable \*
-
Create the following entries in a new repository file (for example,
/etc/yum.repos.d/OL75.repo
).[OL75] name=Oracle Linux 7.5 x86_64 baseurl=file:///var/OSimage/OL7.5_x86_64 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY gpgcheck=1 enabled=1
Note that the correct GPG key file must exist at the path specified for the
gpgkey
parameter. You can download the GPG keys used to sign all of the Oracle Linux release packages from the Oracle Linux yum server. See https://yum.oracle.com/faq.html#a10 for more information. -
Clean up the yum cache.
sudo yum clean all
-
Test that you can use yum to access the repository.
sudo yum repolist
Loaded plugins: refresh-packagekit, security ... repo id repo name status OL75 Oracle Linux 7.5 x86_64 5,070 repolist: 5,070