Actions

Configure Offline Repository CentOS7 A: Difference between revisions

No edit summary
mNo edit summary
Line 1: Line 1:
{{DISPLAYTITLE:Offline Repository Procedure for CentOS 7}}
{{DISPLAYTITLE:Offline Repository Procedure for CentOS 7}}


This page shows how to configure CentOS packages manager for a system that does not have access to Telcobridges repository (no internet access).
This describes the configuration of CentOS packages manager for a system that does not have access to TelcoBridges repository (no internet access).


== Download TelcoBridges repository ==
== Download TelcoBridges repository ==
Download the .iso image of TelcoBridges repository on a machine that have access to the system.
Download the ISO image of TelcoBridges repository on a machine that has access to the system.
  http://repo.telcobridges.com/centos/7/isos/x86_64/tb_centos7_x86_64_repo.iso
  http://repo.telcobridges.com/centos/7/isos/x86_64/tb_centos7_x86_64_repo.iso


== Upload TelcoBridges repository to the system ==
== Upload TelcoBridges repository to the system ==
Upload the .iso file to the "/root" directory of the system with scp or a SFTP tool like [http://filezilla-project.org/ FileZilla]
Upload the ISO file to the "/root" directory of the system with scp or a SFTP tool like [http://filezilla-project.org/ FileZilla]


== Mount the .iso file on the system ==
== Mount the ISO file on the system ==
Mount the .iso file on your system
Mount the ISO file on your system
  # mkdir -p /repo/centos/7
  # mkdir -p /repo/centos/7
  # mount -t iso9660 -o loop /root/tb_centos7_x86_64_repo.iso /repo/centos/7
  # mount -t iso9660 -o loop /root/tb_centos7_x86_64_repo.iso /repo/centos/7

Revision as of 09:54, 12 September 2022


This describes the configuration of CentOS packages manager for a system that does not have access to TelcoBridges repository (no internet access).

Download TelcoBridges repository

Download the ISO image of TelcoBridges repository on a machine that has access to the system.

http://repo.telcobridges.com/centos/7/isos/x86_64/tb_centos7_x86_64_repo.iso

Upload TelcoBridges repository to the system

Upload the ISO file to the "/root" directory of the system with scp or a SFTP tool like FileZilla

Mount the ISO file on the system

Mount the ISO file on your system

# mkdir -p /repo/centos/7
# mount -t iso9660 -o loop /root/tb_centos7_x86_64_repo.iso /repo/centos/7

Change TelcoBridges repository file

Edit the TB-Base.repo file

# vim /etc/yum.repos.d/TB-Base.repo

Change [tb-base] baseurl line to:

baseurl=file:///repo/centos/7/os/$basearch/

Update CentOS 7

# yum clean metadata
# yum update

Delete ISO file

Since the repository file is quite large, it is better to delete it after the update is complete:

# rm /root/*repo.iso