본문 바로가기
Linux

Linux local repository 설정 방법

by Miners1205 2023. 8. 10.
반응형

1. Linux Local Repostiroy 설정 방법

* lcoal repository 설정 방법

1) 외부 통신 가능한 환경인 경우

$ yum install createrepo -y

$ mkdir /test

$ createrepo /test

$ vim /etc/yum.repo.d/test.repo

[test]
name=test
baseurl=file:///root/test/
gpgcheck=0
enabled=1

$ yum clean all

$ yum repolist

 

2) 외부 통신이 불가능한 경우

* 업로드된 파일 해당 서버 업로드

$ rpm -ivh *.rpm

$ mkdir /test

$ createrepo /test

$ vim /etc/yum.repo.d/test.repo

[test]
name=test
baseurl=file:///root/test/
gpgcheck=0
enabled=1

$ yum clean all

$ yum repolist

 

반응형

'Linux' 카테고리의 다른 글

Ceph Install Guide Using Ceph-Deploy  (0) 2023.08.10
Linux SSH 접속시 암호 늦게뜨는것 해결하기  (0) 2023.08.10
wget 하위 디렉토리 다운로드  (0) 2023.08.10
Virtual Machine vs Container  (0) 2023.08.10
Ceph Storage 노드 추가  (0) 2023.08.10