PPAを使用してインストールしようとしました
まず、ファイルリポジトリのsource.listディレクトリへのリンクを/etc/apt/sources.listに追加します
$ Sudo nano /etc/apt/sources.list
deb http://ppa.launchpad.net/pitti/postgresql/ubuntu precise play
deb-src http://ppa.launchpad.net/pitti/postgresql/ubuntu precise play
次に、コマンドでリポジトリを更新しました
$ Sudo apt-get update
エラーがありますが
: W: GPG error: precise http://ppa.launchpad.net Release: The following signatures could not be verified Because The public key is not available: NO_PUBKEY 99B656EA8683D8A2
Apt-keyを克服する方法を追加し、下のリンクのコードを含むKey1フォルダーを作成します code key1
その後、コマンドを実行します
$ Sudo apt-key add / directory / key1
成功する
バックサードリポジトリを更新しようとしました
$ Sudo apt-get update
成功する
4次のコマンドを実行してpgadmin3と1.20.0をインストールしようとしました
$ Sudo apt-get install pgadmin3
まだインストール済みの修正版と1.18.0の修正方法
これは、PPAページの 言及 のように、PPAが非推奨になり、これ以上更新を受け取らないためです。そのPPAで利用可能な「最新」バージョンは1.18.1-1です。
最新バージョンが必要な場合は、PostgreSQL Global Development Group(PGDG)が管理している repository をチェックアウトしてください。要するに、
/etc/apt/sources.list.d/pgdg.listを作成し、次の内容を配置します。
deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main
リポジトリキーをインポートし、パッケージを更新してインストールします。
Sudo apt-get install wget ca-certificates
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | Sudo apt-key add -
Sudo apt-get update
Sudo apt-get upgrade
Sudo apt-get install postgresql-9.4 pgadmin3
リポジトリのセットアップを自動化するシェル script もあります。
詳細については documentation を参照してください。
TrustyでPreciseリポジトリを使用する理由は何ですか? pgadmin3
は、TrustyなどのUbuntuリポジトリにあります。
したがって、行を削除します
deb http://ppa.launchpad.net/pitti/postgresql/ubuntu precise play
deb-src http://ppa.launchpad.net/pitti/postgresql/ubuntu precise play
sources.list
からインストールして
Sudo apt-get update
Sudo apt-get install pgadmin3
バージョン1.20.0~beta2-1
をインストールするには、少なくともVividまたは別のPPAが必要です。
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | Sudo apt-key add -
Sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main" >> /etc/apt/sources.list.d/postgresql.list'
確認する
% apt-cache policy pgadmin3
pgadmin3:
Installed: (none)
Candidate: 1.20.0-1.pgdg14.04+1
Version table:
1.20.0-1.pgdg14.04+1 0
500 http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg/main i386 Packages
そしてインストール
Sudo apt-get update
Sudo apt-get install --reinstall pgadmin3