Ubuntuでパッケージのネットワークインストールに利用できる独自のパッケージレポジトリを作成・利用する方法 †本資料はネットワークインストールが可能な独自パッケージリポジトリを作成し利用する手順などを記述しています。 関連記事 †aptのパッケージレポジトリ †新規ソフトウェアの追加やセキュリティアップデートのために、 しかし、パッケージレポジトリには、公式レポジトリだけでなく、独自のパッケージレポジトリも存在します。 独自レポジトリを作る目的には、公式パッケージの内容に独自のパッチを加えたものや、 また、特別なパッケージを提供するためではなく、インターネットとの疎通が取れない(公式レポジトリが使用できない)環境において ここでは、そのような独自レポジトリの作成手順と、その利用手順を説明します。 独自パッケージレポジトリの作成準備 †独自のパッケージレポジトリを作成するには、以下の準備が必要になります。
独自パッケージレポジトリの作成手順 †独自パッケージレポジトリを作成するには、独自レポジトリを作成したいマシン上で以下の手順を実行します。
# cp swift_1.8.0-0ubuntu1.2~cloud0_all.deb /var/www/
以上で、独自パッケージレポジトリが、作成できました。 ネットワーク・HTTPサーバの確認 †ネットワーク経由で、レポジトリにアクセスできるかどうか、curlコマンドを使って確認します。 # curl http://server1.example.tld/Packages Package: swift Priority: optional Section: net Installed-Size: 211 Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> Original-Maintainer: Soren Hansen <soren@ubuntu.com> Architecture: all Version: 1.8.0-0ubuntu1.2~cloud0 Replaces: swift (<< 1.6.0-0ubuntu1) Depends: python-swift (= 1.8.0-0ubuntu1.2~cloud0), python Breaks: swift (<< 1.6.0-0ubuntu1) Filename: ./swift_1.8.0-0ubuntu1.2~cloud0_all.deb Size: 74774 MD5sum: d37b39c1522724bc55dcac767dcd889b SHA1: fd57a77cad7fa992135a6dfaff5696faa6ace66f SHA256: cece959eddbb4ad2c07edc7cac03621b32f1410c1ec7988335484537ea34431c SHA512: c0362146e2605421a95eee0b633e6b2b3be380499b4e6309c3ea983d4a69231dcd73e6328bad2ef3c51a2a7bcc8dd1a4f8f1b40412e054824ffc78cebcca3ff7 Description: distributed virtual object store - common files OpenStack Object Storage (code-named Swift) is open source software for creating redundant, scalable object storage using clusters of standardized servers to store petabytes of accessible data. It is not a file system or real-time data storage system, but rather a long-term storage system for a more permanent type of static data that can be retrieved, leveraged, and then updated if necessary. Primary examples of data that best fit this type of storage model are virtual machine images, photo storage, email storage and backup archiving. Having no central "brain" or master point of control provides greater scalability, redundancy and permanence. . Objects are written to multiple hardware devices in the data center, with the OpenStack software responsible for ensuring data replication and integrity across the cluster. Storage clusters can scale horizontally by adding new nodes. Should a node fail, OpenStack works to replicate its content from other active nodes. Because OpenStack uses software logic to ensure data replication and distribution across different devices, inexpensive commodity hard drives and servers can be used in lieu of more expensive equipment. . . This package provides some core binaries and clients to control swift. Homepage: http://launchpad.net/swift テストで置いたswiftパッケージについての情報ファイル(Packages)が取得できています。 独自パッケージレポジトリの利用手順 †作成した独自パッケージレポジトリを利用するには、利用したいマシン上で以下の手順を実行します。
以上の手順により、作成した独自パッケージレポジトリが利用可能となります。 以上、Ubuntuでネットワークインストールに利用できる独自のパッケージレポジトリを作成する方法についてでした。 |