遅いDebianミラーを使用するとイライラする可能性があるため、地理的な場所にできるだけ近いミラーを選択するのが常に最善です。あなたの最善の推測でさえ、必ずしも良い結果をもたらすとは限りません。幸い、netselect-apt
コマンドラインツールは、利用可能な最速のミラーを見つけるのに役立ちます。
基本的な考え方は次のとおりです。
上の画像でわかるように、87.0 kB/sはかなり残念です。
netselect-apt
を使用してこれを変更してみましょう より高速なミラーロケーターツール。インストールは簡単です: # apt-get install netselect-apt
次に、オーストラリアにある最速のミラーを見つけます-c
、15のサイトの結果を比較します-t
利用可能な場合、アーキテクチャはamd64 -a
である必要があります そして私たちが探しているバージョンはテスト中です:
# netselect-apt -c australia -t 15 -a amd64 -n testing Using distribution testing. Retrieving the list of mirrors from www.debian.org... --2015-01-29 19:33:12-- http://www.debian.org/mirror/mirrors_full Resolving www.debian.org (www.debian.org)... 140.211.15.34, 128.31.0.62 Connecting to www.debian.org (www.debian.org)|140.211.15.34|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 353167 (345K) [text/html] Saving to: ‘/tmp/netselect-apt.vPhJid’ /tmp/netselect-apt.vPhJid 100%[===============>] 344.89K 445KB/s in 0.8s 2015-01-29 19:33:14 (445 KB/s) - ‘/tmp/netselect-apt.vPhJid’ saved [353167/353167] Choosing a main Debian mirror using netselect. (will filter only for mirrors in country australia) netselect: 8 (8 active) nameserver request(s)... Duplicate address 218.100.43.30 (http://mirror.waia.asn.au/debian/, http://ftp.au.debian.org/debian/); keeping only under first name. Running netselect to choose 15 out of 12 addresses. ............................................................................................................................. Only found 12 hosts out of 15 requested. The fastest 15 servers seem to be: http://debian.mirror.uber.com.au/debian/ http://debian.mirror.serversaustralia.com.au/debian/ http://mirror.optus.net/debian/ http://mirror.overthewire.com.au/debian/ http://mirror.crucial.com.au/debian/ http://mirror.eftel.com/debian/ http://mirror.as24220.net/pub/debian/ http://ftp.iinet.net.au/debian/debian/ http://mirror.waia.asn.au/debian/ http://ftp.monash.edu.au/pub/linux/debian/ http://mirror.cse.unsw.edu.au/debian/ http://mirror.linux.org.au/debian/ Of the hosts tested we choose the fastest valid for HTTP: http://debian.mirror.uber.com.au/debian/ Writing sources.list. Done.
上記のコマンドの出力に基づいて、netselect-apt
であることがわかります。 最良の選択がhttp://debian.mirror.uber.com.au/debian/
である12個のミラーのみが見つかりました 。 netselect-apt
sources.list
も作成しました 検討のために、現在の作業ディレクトリにあるファイル。 netselect-apt
の場合 コマンドは実際の/etc/apt/
から実行されます ディレクトリは、sources.list exists, moving to sources.list.1422520852
に移動するなどのランダムなサフィックスが付いたソースリストファイルを出力します。 。
または、netselect-apt
を実行することもできます オプションの少ないコマンド:
# netselect-apt testing
または単に:
# netselect-apt
この場合、デフォルトのDebianバージョンはstable
になります 。 sources.list
を入手したら 生成されたミラーをシステムのsources.list
に含めることができます 作成者:
# cp /etc/apt/sources.list /etc/apt/sources.list_backup # mv sources.list /etc/apt/sources.list
または、結果の行を現在の/etc/apt/sources.list
にのみ追加します 。結果を見てみましょう