web-dev-qa-db-ja.com

Torのインストール中にエラーが発生しました

https://www.torproject.org/docs/debian.html.enの指示に従ってtorのdevelopment versionをインストールしたい#development 私のubuntu 14.04では、コマンドを実行するたびに

Sudo apt-get update

いくつかのエラーが発生します:

Err http://deb.torproject.org jessie/main Sources
 404  Not Found [IP: 10.10.34.36 80]
Err http://deb.torproject.org jessie/main AMD64 Packages
 404  Not Found [IP: 10.10.34.36 80]
Err http://deb.torproject.org jessie/main i386 Packages
 404  Not Found [IP: 10.10.34.36 80]
Ign http://deb.torproject.org jessie/main Translation-en_US
Ign http://deb.torproject.org jessie/main Translation-en
Fetched 435 kB in 5s (77.3 kB/s)
W: Failed to fetch     bzip2:/var/lib/apt/lists/partial/ir.archive.ubuntu.com_ubuntu_dists_trusty-updates_main_i18n_Translation-en  Hash Sum mismatch

W: Failed to fetch     bzip2:/var/lib/apt/lists/partial/ir.archive.ubuntu.com_ubuntu_dists_trusty-backports_main_i18n_Translation-en  Hash Sum mismatch

W: Failed to fetch     bzip2:/var/lib/apt/lists/partial/ir.archive.ubuntu.com_ubuntu_dists_trusty-backports_universe_i18n_Translation-en  Hash Sum mismatch

W: Failed to fetch     http://deb.torproject.org/torproject.org/dists/jessie/main/source/Sources  404  Not Found [IP: 10.10.34.36 80]

W: Failed to fetch     http://deb.torproject.org/torproject.org/dists/jessie/main/binary-AMD64/Packages  404  Not Found [IP: 10.10.34.36 80]

W: Failed to fetch     http://deb.torproject.org/torproject.org/dists/jessie/main/binary-i386/Packages  404  Not Found [IP: 10.10.34.36 80]

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

その後、私はこのコマンドを実行します

Sudo apt-get install tor deb.torproject.org-keyring

エラーが発生します:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package deb.torproject.org-keyring
E: Couldn't find any package by regex 'deb.torproject.org-keyring'

どうすれば修正できますか?

2
Shi.Bi

これは、Debian Jessieの指示に従ったために発生しています。 Ubuntu Trusty Tahrの指示の上にあるドロップダウンメニューを変更する必要があります。 :)


最初に、預託機関からJessieエントリを削除する必要があります。これを行うには、ターミナルで次のコマンドを入力します。

Sudo rm /etc/apt/sources.list.d/jessie-main.list

次に、aptを更新する必要があります。

Sudo apt-get update

それが完了したら、Ubuntu Trusty Tahirの指示を続ける必要があります。


ソフトウェアソースを削除する別の方法は、下のアイコンを使用して「ソフトウェアセンター」を開くことです。

enter image description here

Software Center内で、下の画像のように、「Ubuntu Softwareメニュー」内の「Software and updates」リンクをクリックします。

enter image description here

ソフトウェアとアップデート内で、「その他のソフトウェア」タブをクリックし、以下のアップデートでチェックした2つのオプションがソースから削除されていることを確認します。そうでない場合は、それらを削除します。

enter image description here

完了したら、そのウィンドウを閉じるとリポジトリが更新されます。

3