Configure Offline Repository CentOS5 A
From TBwiki
(Difference between revisions)
(Removed the permanent mount point) |
|||
(One intermediate revision by one user not shown) | |||
Line 14: | Line 14: | ||
# mkdir -p /repo/centos/5 | # mkdir -p /repo/centos/5 | ||
# mount -t iso9660 -o loop /root/tb_centos5_x86_64_repo.iso /repo/centos/5 | # mount -t iso9660 -o loop /root/tb_centos5_x86_64_repo.iso /repo/centos/5 | ||
− | |||
− | |||
− | |||
− | |||
== Change TelcoBridges repository file == | == Change TelcoBridges repository file == | ||
Line 31: | Line 27: | ||
== Clean metadata == | == Clean metadata == | ||
# yum clean metadata | # yum clean metadata | ||
+ | # yum update |
Latest revision as of 10:27, 20 June 2018
This page shows how to configure CentOS packages manager for a system that does not have access to Telcobridges repository (no internet access).
Contents |
Download TelcoBridges repository
Download the .iso image of TelcoBridges repository on a machine that have access to the system.
http://repo.telcobridges.com/centos/5/isos/x86_64/tb_centos5_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/5 # mount -t iso9660 -o loop /root/tb_centos5_x86_64_repo.iso /repo/centos/5
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/5/os/$basearch/
Change [tb-updates] baseurl line to:
baseurl=file:///repo/centos/5/updates/$basearch/
Clean metadata
# yum clean metadata # yum update