tor
Kali Linux 2016.1()にインストールしようとしていますkali-rolling
。apt-get install tor
端末に入力すると、次のエラーが発生します。
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package tor is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'tor' has no installation candidate
この問題を解決してTorをインストールするにはどうすればよいですか?
修正する:
私はこれを試しました:http://www.blackmoreops.com/2013/12/16/installing-tor-kali-linux/- ソースファイルに追加しましたがdeb http://deb.torproject.org/torproject.org wheezy main
まったく役に立たなかったため、この文字列を削除し、デフォルトの状態になりました。
答え1
解決策が見つかりました。
まず、以下を実行しました。
echo -e "deb http://http.kali.org/kali sana main non-free contrib\ndeb http://security.kali.org/kali-security/ sana/updates main contrib non-free" > /etc/apt/sources.list
それから
apt-get update
apt-get update --fix-missing
その後、Torを正常にインストールできますapt-get install tor
。