7
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【CentOS】yumでローカルリポジトリの作成・使用方法

Last updated at Posted at 2017-02-19

###環境

  • CentOS 6.8

###ローカルリポジトリの作成

####必要なパッケージをインストール
yum install createrepo

####rpmファイルを用意
リポジトリに配置するrpmファイルを任意のディレクトリに配置します。
※yumリポジトリからrpmファイルを取得する場合、こちらの記事が参考になるかもしれません

####コマンド
下記コマンドを、rpmファイルを配置したディレクトリで実行します
createrepo --database .

###ローカルリポジトリの使用

####リポジトリの設定ファイルを作成
vi /etc/yum.repo.d/local.repo

local.repo
[local]                      #リポジトリID
name=local repository        #リポジトリの説明
baseurl=file:///tmp/repo/    #リポジトリのパス
gpgcheck=0                   #GPG署名確認を無効
enabled=0                    #デフォルトではリポジトリを無効

####コマンド

yum update
yum --enablerepo=local update

yum install
yum --enablerepo=local install xxxxx

ローカルリポジトリ以外のリポジトリを一時的に無効化
yum --disablerepo=\* --enablerepo=local

7
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?