今日Ubuntu 16.04 LTSをインストールしてから、次の方法でuniverseを有効にしました。
Sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"
その後、私は走った:
Sudo apt-get update
リストにはかなりの数のリンクが表示されていました。
その後、途中でクラッシュしたSoftware Updaterを実行しました。 rebooting後、アップデートは問題なくインストールされましたが、再度リブートした後、apt-get updateを実行するたびに、Just 5 linksが表示されます前の50〜60の代わりに。
5つのリンクは次のとおりです。
aditya@Aditya-ASUS:~$ Sudo apt-get update
[Sudo] password for aditya:
Hit:1 http://archive.ubuntu.com/ubuntu xenial InRelease
Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]
Hit:3 http://in.archive.ubuntu.com/ubuntu xenial InRelease
Get:4 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease [95.7 kB]
Hit:5 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease
Fetched 190 kB in 2s (71.2 kB/s)
Reading package lists... Done
これは正常ですか、または問題があります。
ここに私のSources.listがあります:
# deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release AMD64 (20160420.1)]/ xenial main restricted
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://in.archive.ubuntu.com/ubuntu/ xenial main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
## 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
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://in.archive.ubuntu.com/ubuntu/ xenial universe
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial universe
deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates universe
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-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://in.archive.ubuntu.com/ubuntu/ xenial multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-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://in.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu xenial partner
# deb-src http://archive.canonical.com/ubuntu xenial partner
deb http://security.ubuntu.com/ubuntu xenial-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://security.ubuntu.com/ubuntu xenial-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe
deb http://security.ubuntu.com/ubuntu xenial-security multiverse
deb http://archive.ubuntu.com/ubuntu xenial universe main multiverse restricted
# deb-src http://archive.ubuntu.com/ubuntu xenial main universe restricted multiverse
# deb-src http://archive.ubuntu.com/ubuntu xenial main universe restricted multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse
Sudo apt-get update
は、リポジトリからパッケージリストのインデックスを取得します。しかし、セキュリティとパッケージインデックスのダウンロードサイズの削減の両方のために、注文でこれを行います。
各リポジトリについて、
最初、オンラインリポジトリのInRelease
ファイル(インライン署名ファイル)の変更時刻を一致させようとしますコンピューターに既にダウンロードされているもの(ある場合)。
InRelease
ファイルがオンラインリポジトリで変更されていないことがわかった場合、インデックスファイル(Packages.gzなど)のダウンロードは続行されません。既にダウンロードされている場合は、より大きく実際のインデックスです。お使いのコンピューターで。変更されていない署名は、インデックスファイルが変更されていないことを意味するためです。
InRelease
ファイルの変更日が変更されていることがわかると、最初にInRelease
ファイルを取得します。次に、ダウンロードしたインデックスのチェックサム(InRelease
ファイルにある)を再度照合します。一致する場合、インデックスはダウンロードされません。それ以外の場合は、インデックスをダウンロードします。
舞台裏ではさらに多くのことが行われています。しかし、基本的にあなたの場合は、パッケージリストをSudo apt-get update
で更新しただけなので、リポジトリ内の何も変更されていないため、後で出力を短くするのが普通です。
詳細についてはこれを確認してください:
通常の動作で、心配する必要はありません。何らかの理由で、apt-getからaptへの変更に関するドキュメントを見つけるのは面倒ですが、16.04リリースサイクル(または、おそらく以前のバージョン15.10)で新しいaptツールに切り替える変更がありました。異なるソースを更新します。ソースファイルが実際に変更されたかどうかを確認するためにチェックサムを使用すると思います。