What does 'Ign' , `Get` or 'Hit' mean when running an apt-get update?
Solution 1:
When you use apt-get update
it verifies if the same update indexes need downloading, if not it does not download the same updated indexes again.
Hit
means apt checked the timestamps on package list, those match and there are no changes.Ign
means there are no changes in the pdiff index file, it wont bother downloading it again.Get
means apt checked the timestamps on package list, there were changes and will be downloaded.
Nothing to be scared of, it just means there is no need to download updated indexes again, the ones you have are current.
Solution 2:
The correct answer of this question is:
Ign
meansapt
tried to download something (such as translation orInRelease
file) but didn't find, but that can be ignored, so proceed to the next thing. Because translation can be secondary priority and ifInRelease
file can't be found, it uses other method for authentication like usingRelease
andRelease.gpg
pair.Hit
meansapt
needed to download aRelease
file orInRelease
file (because somehow it got deleted) and once it is downloaded, it checked the checksum of the Index file in it and found that the checksum mentioned there matches the checksum of the Package file already downloaded that is in/var/lib/apt/lists
. That's why it's aHit
. So, it won't download thePackage
file again.
Found the answer from:
- How do Ign and Hit affect apt-get update
- My personal experiment with a local repository by turning off all other repositories.