나는 일반적으로 다음과 같이 내 컴퓨터를 업그레이드합니다.
sudo apt-get update && time sudo apt-get dist-upgrade
아래는에서 발췌 한 것입니다 man apt-get
. 업그레이드를 사용하면 규칙이 유지됩니다. 어떤 상황에서도 현재 설치된 패키지가 제거되거나 아직 설치되지 않은 패키지가 검색되어 설치되지 않습니다. 이것이 중요한 경우를 사용하십시오 apt-get upgrade
. 일이 "잘 작동"하기 apt-get dist-upgrade
를 원한다면, 의존성이 해결 되기를 원할 것입니다 .
시스템 관리자 인 경우 dist- upgrade 대신 업그레이드 를 원하는 이유를 확장하려면 예측 성이 필요합니다. 사용 가능한 모든 패키지를 항상 열심히 업그레이드하는 대신 시스템 및 사용 가능한 업그레이드를 검사 할 수있는 다양한 자동화 기능을 갖춘 적절한 PPA 모음 (아마도 자체 PPA가 있음) 에서 적절한 피닝 또는 가져 오기 와 같은 고급 기능을 사용 하고 있을 수 있습니다. apt가 스크립팅되지 않은 동작을 수행 할 때, 특히 프로덕션 서비스가 중단되는 경우 특히 실망 할 것입니다.
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. So, dist-upgrade
command may 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.
sudo apt full-upgrade
에서는 비슷한 작업을 수행합니다.