답변:
apt-get을 사용하는 우분투 / 데비안 등:
먼저
update
다음을 실행해야합니다upgrade
. 둘 다 자동으로 다른 것을 실행하지 않습니다.
apt-get update
사용 가능한 패키지 및 해당 버전 목록을 업데이트하지만 패키지를 설치하거나 업그레이드하지는 않습니다.apt-get upgrade
실제로 최신 버전의 패키지를 설치합니다. 목록을 업데이트 한 후 패키지 관리자는 설치 한 소프트웨어의 사용 가능한 업데이트에 대해 알게됩니다. 당신이 먼저 원하는 이유update
입니다.
- 출처 .
그러나 yum을 사용 하는 Red Hat / CentOS 에서는 명령이 찾은 업데이트를 적용 할 것인지 묻습니다.update
$ sudo yum 업데이트
사용 가능한 모든 업데이트 목록을 확인하고 적용 할 것인지 묻습니다. 이처럼 :
[..]
kf5-sonnet-core x86_64 5.33.0-1.el7 epel 150 k
kf5-sonnet-ui x86_64 5.33.0-1.el7 epel 141 k
Transaction Summary
==================================================================================================================================================
Upgrade 52 Packages
Total size: 15 M
Is this ok [y/d/N]:
친구가 업데이트 를 "작은 변경 사항"으로, 업그레이드 를 "큰 변경 사항"으로 언급하면 실제로 업그레이드 와 dist-upgrade 의 차이를 의미합니다 .
apt-get 매뉴얼에서 :
upgrade
upgrade is used to install the newest versions of all packages
currently installed on the system from the sources enumerated in
/etc/apt/sources.list. Packages currently installed with new
versions available are retrieved and upgraded; under no
circumstances are currently installed packages removed, or packages
not already installed retrieved and installed. New versions of
currently installed packages that cannot be upgraded without
changing the install status of another package will be left at
their current version. An update must be performed first so that
apt-get knows that new versions of packages are available.
dist-upgrade
dist-upgrade in addition to performing the function of upgrade,
also intelligently handles changing dependencies with new versions
of packages; apt-get has a "smart" conflict resolution system, and
it will attempt to upgrade the most important packages at the
expense of less important ones if necessary. The dist-upgrade
command may therefore remove some packages. The
/etc/apt/sources.list file contains a list of locations from which
to retrieve desired package files. See also apt_preferences(5) for
a mechanism for overriding the general settings for individual
packages.