インストール後のDebianイメージの設定

インストール後のDebianイメージの設定

Debian をインストールしましたが、インターネットがダウンしているとしましょう。インストールは正常に機能しますが、リストから適切なミラーを設定している間にネットワークインターネットがダウンしてエラーが発生します。私はミラーなしでインストールしました(apt/sources.listにはCDROMエントリのみが含まれています)。インターネットが動作します。インストール後にDebianミラーをどのように設定しますか?編集方法を知っていますが、sources.listミラーリングされviたリスト選択項目を含むメニューが必要です。

ベストアンサー1

あなたは、いくつかのミラー、または最も近いと速いミラーが欲しいだけです。後者の場合は、netselect-aptをインストールして実行します。私の場所でどちらが最も速いかを確認するために走ったところ、私は次のように言いました。

[$] sudo netselect-apt testing
........
........
    The fastest 10 servers seem to be:

        http://mirrors.ispros.com.bd/debian/
        http://ftp.sg.debian.org/debian/
        http://mirrors.apu.edu.my/debian/
        http://ftp.iinet.net.au/debian/debian/
        http://debian.mirror.cambrium.nl/debian/
        http://mirror.sax.uk.as61049.net/debian/
        http://ftp.uk.debian.org/debian/
        http://mirror.vorboss.net/debian/
        http://mirror.1000mbps.com/debian/
        http://ftp.antik.sk/debian/

    Of the hosts tested we choose the fastest valid for HTTP:
            http://mirrors.ispros.com.bd/debian/

    Writing sources.list.
    sources.list exists, moving to sources.list.1484862805
    Done.

[$] cat sources.list.1484862805

     1  # Debian packages for testing
     2  deb http://debian.ec.as6453.net/debian/ testing main contrib
     3  # Uncomment the deb-src line if you want 'apt-get source'
     4  # to work with most packages.
     5  # deb-src http://debian.ec.as6453.net/debian/ testing main contrib
     6  
     7  # Security updates for stable
     8  # deb http://security.debian.org/ stable/updates main contrib

便利にお使いください。

おすすめ記事