수년 동안 나는 apt update
과 의 결과 apt-get update
가 같다고 생각했습니다. 그런데 - 네, 알아요. apt
그리고 apt-get
정확히 똑같지는 않아요.
apt update
최근에 Ubuntu 컴퓨터에서 이 프로그램을 실행하면 13개의 소스를 확인하지만 apt-get update
7개의 소스만 확인 한다는 사실을 발견했습니다 . /etc/apt/sources.list
또한 총 7개의 업데이트 소스가 아래에 나열되어 있습니다./etc/apt/sources.list.d/*
온라인에서 이에 대한 정보를 찾을 수 없습니다. 주변에 나한테 설명해줄 사람 있어?
***편집 다음은 내 Mint 상자의 유사한 출력입니다. 동일한 동작을 나타냅니다. 아마도 뭔가 빠진 것 같지만 그것이 무엇인지는 확실하지 않습니다.
pcko@MBP12:~$ sudo apt update
[sudo] password for pcko:
Ign:1 http://packages.linuxmint.com una InRelease
Hit:2 http://packages.linuxmint.com una Release
Hit:4 http://packages.microsoft.com/repos/code stable InRelease
Hit:5 http://archive.canonical.com/ubuntu focal InRelease
Hit:6 http://archive.ubuntu.com/ubuntu focal InRelease
Get:7 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
Get:8 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB]
Get:9 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB]
Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1,745 kB]
Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 DEP-11 Metadata [277 kB]
Get:12 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [918 kB]
Get:13 http://security.ubuntu.com/ubuntu focal-security/main amd64 DEP-11 Metadata [40.6 kB]
Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 DEP-11 Metadata [390 kB]
Get:15 http://security.ubuntu.com/ubuntu focal-security/universe amd64 DEP-11 Metadata [66.3 kB]
Get:16 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 DEP-11 Metadata [940 B]
Get:17 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 DEP-11 Metadata [7,980 B]
Get:18 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 DEP-11 Metadata [30.8 kB]
Get:19 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 DEP-11 Metadata [2,464 B]
Fetched 3,816 kB in 2s (1,574 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
211 packages can be upgraded. Run 'apt list --upgradable' to see them.
pcko@MBP12:~$ sudo apt-get update
Ign:1 http://packages.linuxmint.com una InRelease
Hit:2 http://packages.linuxmint.com una Release
Hit:3 http://packages.microsoft.com/repos/code stable InRelease
Hit:4 http://archive.ubuntu.com/ubuntu focal InRelease
Hit:6 http://security.ubuntu.com/ubuntu focal-security InRelease
Hit:7 http://archive.canonical.com/ubuntu focal InRelease
Hit:8 http://archive.ubuntu.com/ubuntu focal-updates InRelease
Hit:9 http://archive.ubuntu.com/ubuntu focal-backports InRelease
Reading package lists... Done
pcko@MBP12:~$ cd /etc/apt
pcko@MBP12:/etc/apt$ ls
apt.conf.d auth.conf.d preferences.d sources.list sources.list.d trusted.gpg.d
pcko@MBP12:/etc/apt$ cat sources.list
#deb cdrom:[Linux Mint 20.3 _Una_ - Release amd64 20220104]/ focal contrib main
# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.
pcko@MBP12:/etc/apt$ cd sources.list.d/
pcko@MBP12:/etc/apt/sources.list.d$ ls
official-package-repositories.list vscode.list
pcko@MBP12:/etc/apt/sources.list.d$ cat official-package-repositories.list
# Do not edit this file manually, use Software Sources instead.
deb http://packages.linuxmint.com una main upstream import backport #id:linuxmint_main
deb http://archive.ubuntu.com/ubuntu focal main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu focal-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu focal-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb http://archive.canonical.com/ubuntu/ focal partner
pcko@MBP12:/etc/apt/sources.list.d$ cat vscode.list
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64,arm64,armhf] http://packages.microsoft.com/repos/code stable main
답변1
추가 조사를 통해 @muru의 의견이 정확하다는 데 동의합니다.
apt는 기존 정보가 최신인 것으로 확인되면 전체 확인을 수행하지 않는다는 점에 유의하세요(정확한 확인 메커니즘은 기억나지 않으며 아마도 헤더에서 제공하는 타임스탬프일 것입니다). 어쨌든, 이 작업을 여러 번 시도하고 순서를 변경하면 일반적으로 실행하는 첫 번째 명령이 어떤 파일이든 관계없이 더 많은 파일을 다운로드한다는 것을 알 수 있습니다.