Actions

Configure Offline Repository: Difference between revisions

 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:Offline Repository Procedure for Telcobridges Linux}}
{{DISPLAYTITLE:Offline Repository Procedure for Telcobridges Linux}}


This describes the configuration of package manager for a system that does not have access to TelcoBridges repository (no internet access).
==Introduction==
This article describes the configuration of the package 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 has access to the system.
Download the ISO image of TelcoBridges repository on a machine that has access to the system.
  https://repo.telcobridges.com/tbos/tbos_repo.iso
* Minimal version is here: [https://repo.telcobridges.com/tbos/7/isos/x86_64/tb_tbos7_x86_64_repo_minimal.iso tb_tbos7_x86_64_repo_minimal.iso] (2025.07 0.9GB)
* Full version is here: [https://repo.telcobridges.com/tbos/7/isos/x86_64/tb_tbos7_x86_64_repo.iso tb_tbos7_x86_64_repo.iso] (2025.07 6.6GB)


== Upload TelcoBridges repository to the system ==
== Upload TelcoBridges repository to the system ==
Line 13: Line 15:
Mount the ISO file on your system
Mount the ISO file on your system
  # mkdir -p /repo/tbos
  # mkdir -p /repo/tbos
  # mount -t iso9660 -o loop /root/tbos_repo.iso /repo/tbos
  # mount -t iso9660 -o loop /root/tb_tbos7_x86_64_repo_minimal.iso /repo/tbos


== Change TelcoBridges repository file ==
== Change TelcoBridges repository file ==
Line 20: Line 22:


Change ''[tb-base]'' '''baseurl''' line to:
Change ''[tb-base]'' '''baseurl''' line to:
  baseurl=file:///repo/tbos
  baseurl=file:///repo/tbos/os/$basearch/


== Update packages ==
== Update packages ==
Line 28: Line 30:
== Delete ISO file ==
== Delete ISO file ==
Since the repository file is quite large, it is better to delete it after the update is complete:
Since the repository file is quite large, it is better to delete it after the update is complete:
  # rm /root/*repo.iso
  # rm /root/tb_tbos7_x86_64_repo_minimal.iso


== Other Links ==
== Other Links ==
* Here is a link to [[Upgrade_Telcobridges_Linux|upgrade the Telcobridges Linux]]
* [[Upgrade_Telcobridges_Linux|Upgrade the Telcobridges Linux]]
* Here is a link to [[Configure_Offline_Repository_CentOS5_A|Update a CentOS 5 operating system without internet access]
* [[Configure_Offline_Repository_CentOS5_A|Update a CentOS 5 operating system without internet access]]
* Here is a link to [[Configure_Offline_Repository_CentOS7_A|Update a CentOS 7 operating system without internet access]
* [[Configure_Offline_Repository_CentOS7_A|Update a CentOS 7 operating system without internet access]]

Latest revision as of 08:11, 22 July 2025


Introduction

This article describes the configuration of the package 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.

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/tbos
# mount -t iso9660 -o loop /root/tb_tbos7_x86_64_repo_minimal.iso /repo/tbos

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/tbos/os/$basearch/

Update packages

# 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/tb_tbos7_x86_64_repo_minimal.iso

Other Links