Apt-GetでGitをインストールする際のエラー


11

Ubuntu 11.04のサーバーディストリビューションにgitをインストールしようとすると、エラーが発生します。次のコマンドを使用しました。

sudo apt-get install git

そして、それはこのエラーを生成しました:

(Reading database ... 
dpkg: warning: files list file for package `git' missing, assuming package has no files currently installed.
(Reading database ... 20310 files and directories currently installed.)
Preparing to replace git 1:1.7.4.1-3 (using .../git_1%3a1.7.4.1-3_i386.deb) ...
/var/lib/dpkg/tmp.ci/preinst: 12: dpkg-maintscript-helper: not found
dpkg: error processing /var/cache/apt/archives/git_1%3a1.7.4.1-3_i386.deb (--unpack):
 subprocess new pre-installation script returned error exit status 127
/var/lib/dpkg/tmp.ci/postrm: 14: dpkg-maintscript-helper: not found
dpkg: error while cleaning up:
 subprocess new post-removal script returned error exit status 127
Errors were encountered while processing:
 /var/cache/apt/archives/git_1%3a1.7.4.1-3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

次のリポジトリを使用しています。

# deb cdrom:[Ubuntu 8.04.3 _Hardy Heron_ - Release i386 (20090713.1)]/ hardy main restricted
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.

deb http://us.archive.ubuntu.com/ubuntu/ natty main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ natty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ natty-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ natty-updates main restricted


## main & restricted repositories
# deb http://us.archive.ubuntu.com/ubuntu/ lucid main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ lucid main restricted

#deb http://security.ubuntu.com/ubuntu lucid-security main restricted
#deb-src http://security.ubuntu.com/ubuntu lucid-security main restricted

## universe repositories
#deb http://us.archive.ubuntu.com/ubuntu/ lucid universe
#deb-src http://us.archive.ubuntu.com/ubuntu/ lucid universe
#deb http://us.archive.ubuntu.com/ubuntu/ lucid-updates universe restricted main
#deb-src http://us.archive.ubuntu.com/ubuntu/ lucid-updates universe

#deb http://security.ubuntu.com/ubuntu lucid-security universe
#deb-src http://security.ubuntu.com/ubuntu lucid-security universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://us.archive.ubuntu.com/ubuntu/ natty universe
deb-src http://us.archive.ubuntu.com/ubuntu/ natty universe
deb http://us.archive.ubuntu.com/ubuntu/ natty-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ natty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ natty multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ natty multiverse
deb http://us.archive.ubuntu.com/ubuntu/ natty-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ natty-updates multiverse

誰が何が起こっているのか、これを修正してgitをインストールする方法を知っていますか?

[編集] apt-cacheポリシーdpkgの出力は次のとおりです。

dpkg:
  Installed: 1.15.5.6ubuntu4
  Candidate: 1.16.0~ubuntu7.1
  Version table:
     1.16.0~ubuntu7.1 0
        500 http://us.archive.ubuntu.com/ubuntu/ natty-updates/main Packages
     1.16.0~ubuntu7 0
        500 http://us.archive.ubuntu.com/ubuntu/ natty/main Packages
 *** 1.15.5.6ubuntu4 0
        100 /var/lib/dpkg/status

そして今、aptは完全に壊れています。dpkgを更新しようとしましたが、それは古いバージョンであることに気づいたからです。gitをインストールできなかったため失敗しました。apt-get purge、apt-get clean、apt-get updateを試みました。それでも同じ問題。私はgitを削除しようとしましたが、これを得ました:

Removing git-core ...
dpkg: error processing git (--remove):
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting a removal.
Errors were encountered while processing:
 git
E: Sub-process /usr/bin/dpkg returned an error code (1)

1
質問を編集して、「apt-cache policy dpkg」の出力を追加してください。
ajmitch

@ajmitch完了です。
ダニエルビンガム

この質問の報奨金を開始できるようになるまで、どれくらい待つ必要がありますか?私は本当にこれにかなり早く答えが必要です:(
ダニエルビンガム

あなたは明快なインストールを持っているために問題があるように見えますが、nattyからパッケージをインストールしようとしています(間にmaverickにアップグレードせずに)
ajmitch

@ajmitchああ、知ってる?しばらく前にそうしました。nattyリポジトリーにあるvimのアップグレードされたバージョンが必要でしたが、明快なリポジトリーにはありませんでした。思い出させてくれてありがとう!
ダニエルビンガム

回答:


5

念のため:それはapt-get install git-core、だけではありませんapt-get install git


1
いつ変更されたかはわかりませんが、git-coreだけでなく、gitも動作するはずです。確かに粋で、gitのパッケージは本当にのgitである
ハミッシュダウナー

10.04以来、私はやらなければならなかったgit-core、それ以外の場合は同じエラーメッセージを受け取りました。
マルク

いいえ、同じエラー。
ダニエルビンガム

の説明にgit-coreは「廃止」とあります。
ルイ

1
もともと、gitパッケージは誰も実際に使用していないGNU Interactive Tools用でした。現在、gitGit VCSを指し、git-core非推奨です。
ヨルグWミットタグ14

5

さて、私はそれを修正しました。パッケージを手動で削除してから、dpkgを強制的に消去する必要がありました。その後、git-coreからインストールしましたが、うまくいきました。行ったパッケージを手動で削除するには

/var/cache/apt/archives

そして削除されたgit_1%3a1.7.4.1-3_i386.debファイル。その後、私はに行きました

/var/lib/dpkg/info

そして、やったls | grep gitすべてのものを削除しました。その後、私は走った

sudo dpkg --remove --force-remove-reinstreq git

パッケージのdpkgをクリーニングします。それが完了したらgit-coregitパッケージの代わりにgitをインストールすることができ、うまく機能しました。


私は同じ問題に出くわし、これも私のためにそれを修正しました。
ジョンフィアラ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.