web-dev-qa-db-ja.com

ヘルプが必要な「須藤:add-apt-repository:コマンドが見つかりません」

そこには「add-apt-repository」の投稿がたくさんありますが、それらのほとんどで解決策を見たり試したりしたと思います。

Ubuntu Server 12.04にJavaをインストールしようとしています。いくつかの検索は、以下の最も一般的なソリューションにつながります。

Sudo add-apt-repository ppa:webupd8team/Java
Sudo apt-get update
Sudo apt-get install Oracle-Java7-installer

ただし、実行すると

Sudo add-apt-repository ppa:webupd8team/Java

次のエラーが表示されます。

Sudo: add-apt-repository: command not found

そのため、より多くの検索とトラブルシューティングにより、次のことがわかりました。

Sudo apt-get install software-properties-common

それは私に与えます(少なくとも、少なくとも-初めて、実際にパッケージをインストールしました):

0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

他のアドバイスは、以下が必要かもしれないと示唆しました:

Sudo apt-get install python-software-properties

次のエラーが発生します。

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:
 python-software-properties : Depends: python-pycurl but it is not installable
E: Unable to correct problems, you have held broken packages.

だから私は試しました:

Sudo apt-get install python-pycur

これを入手してください:

This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'python-pycurl' has no installation candidate

ちょっと立ち往生。次に進むべきアイデアはありますか?

Thomas W.の提案によると、/ etc/apt/sources.listの内容は次のとおりです。

# deb cdrom:[Ubuntu-Server 12.04.5 LTS _Precise Pangolin_ - Release i386 (20140806.1)]/ precise main restricted

#deb cdrom:[Ubuntu-Server 12.04.5 LTS _Precise Pangolin_ - Release i386 (20140806.1)]/ precise 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/ precise main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ precise main restricted

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

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. 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/ precise universe
deb-src http://us.archive.ubuntu.com/ubuntu/ precise universe
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-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/ precise multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise multiverse
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse

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

また、Sudo apt-get updateの結果が役立つ場合があります。

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/main/source/Sources  Hash Sum mismatch

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/restricted/source/Sources  Hash Sum mismatch

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/universe/source/Sources  Hash Sum mismatch

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/multiverse/source/Sources  Hash Sum mismatch

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/main/binary-i386/Packages  Hash Sum mismatch

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/restricted/binary-i386/Packages  Hash Sum mismatch

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/universe/binary-i386/Packages  Hash Sum mismatch

W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise/multiverse/binary-i386/Packages  Hash Sum mismatch

E: Some index files failed to download. They have been ignored, or old ones used instead.
4
Puckster

OK。解決策に導いたコメントを寄せてくれたThomas W.に感謝します。

原因は壊れたパッケージにまでさかのぼるようです。以前に壊れたパッケージを修正する方法を検索しましたが、解決策のどれも問題全体を修正しませんでした。代わりに、apt-get更新の最後に取得していたHash Sumミスマッチエラーを検索し、問題を解決した このソリューション を見つけました。

完全性のためにここに回答をコピーしました:

/ var/lib/apt/listsディレクトリのコンテンツを削除します。

Sudo rm -fR /var/lib/apt/lists/*

次に実行します:

Sudo apt-get update

どうやら、あなたの達人は修正または精巧化することができますが、apt-getのcleanおよびautocleanフラグは問題のある子をapt/listsディレクトリから完全には削除しませんでした。

1
Puckster

Python-software-propertiesパッケージが必要なadd-apt-repositoryの代わりに、組み込みのapt-add-を試してください倉庫。 Precise、Trusy、Xenialですぐに使用できます。詳細については manpage をご覧ください。

両方のコマンドは同じように見えますが、aptの順序に注意してください。組み込みのものはaptで始まり、もう一方はaddで始まります。

0
Atifm

私はこれを見つけました、それは私のために働いた

Sudo apt-get install software-properties-common

Ubuntu 16.04 LTSサーバーの使用

0
snickers2k