Ubuntu 14.04にGitをインストールしようとしています

Ubuntu 14.04にGitをインストールしようとしています

Ubuntu 14.04 (Trusty Tahr)にGitをインストールしようとしています...

sudo apt-get install git-all

と言いました:

E: Unable to locate package git

そこで私は実行しました:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E1DD270288B4E6030699E45FA1715D88E1DF1F24
sudo su -c "echo 'deb http://ppa.launchpad.net/git-core/ppa/ubuntu trusty main' > /etc/apt/sources.list.d/git.list"

sudo apt-get update
sudo apt-get install git

Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 git : Depends: liberror-perl but it is not installable
       Recommends: patch but it is not installable
       Recommends: rsync but it is not installable
       Recommends: ssh-client but it is not installable
E: Unable to correct problems, you have held broken packages.

どうすれば修正できますか? また、動作させるにはどうすればよいですか?

答え1

以下からわかるように、git-allパッケージは確かに14.04に存在し、ないPPAが必要:

andrew@corinth:~$ apt-cache policy git-all
git-all:
  Installed: (none)
  Candidate: 1:1.9.1-1ubuntu0.3
  Version table:
     1:1.9.1-1ubuntu0.3 0
        500 http://au.archive.ubuntu.com/ubuntu/ trusty-updates/universe amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ trusty-security/universe amd64 Packages
     1:1.9.1-1 0
        500 http://au.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages
andrew@corinth:~$ 

これは Ubuntu リポジトリの「Universe」セクションにあるので、次の手順に従って有効になっていることを確認してください。

Dash --> Software & Updates --> Ubuntu Software --> Community maintained....

マウス カーソルが適切なリポジトリを示している次のスクリーンショットを参照してください。

ここに画像の説明を入力してください

「Universe」をアクティブにしてリポジトリ インデックスの再読み込みを許可した後、PPA を削除して次のコマンドを実行します。

sudo apt-get install git-all

そしてすべてはうまくいくはずです...

関連情報