Configure Offline Repository: Difference between revisions
(Added links) |
(→Links) |
||
| Line 30: | Line 30: | ||
# rm /root/*repo.iso | # rm /root/*repo.iso | ||
== Links == | == Other Links == | ||
* Here is a link to [[Upgrade_Telcobridges_Linux|upgrade the Telcobridges Linux]] | * Here is a link to [[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] | * Here is a link to [[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] | * Here is a link to [[Configure_Offline_Repository_CentOS7_A|Update a CentOS 7 operating system without internet access] | ||
Revision as of 14:20, 13 June 2024
This describes the configuration of 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.
https://repo.telcobridges.com/tbos/tbos_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/tbos # mount -t iso9660 -o loop /root/tbos_repo.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
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/*repo.iso
Other Links
- Here is a link to upgrade the Telcobridges Linux
- Here is a link to [[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]