무인 업그레이드 자동 시작을 중지/비활성화하는 방법은 무엇입니까? [복사]

무인 업그레이드 자동 시작을 중지/비활성화하는 방법은 무엇입니까? [복사]

저는 최근 4년 동안 Trisquel 7.0을 실행해 온 데스크탑 컴퓨터에 Trisquel 8.0 LTS(Flidas)를 설치했습니다. 시스템이 매우 느려집니다. RAM과 CPU 사용량을 확인해 보니 CPU가 거의 100%에 다다랐고, top무엇이 문제인지 알아보고자 unattended-upgrCPU 전체를 소모하고 있는 것을 발견했습니다.

여기에 이미지 설명을 입력하세요.

PID를 사용하여 종료하려고 시도했지만 sudo kill 1803잠시 후 자동으로 다시 시작되었습니다. 무인 업그레이드의 목적이 중요한 보안 업데이트를 자동으로 설치하는 것임을 알고 있지만 자동으로 시작되지 않도록 비활성화해야 합니다.

어떻게 해야 하나요?

답변1

다음과 같이 자동 업데이트 프로세스를 중지해야 합니다.

다음 명령을 실행하십시오.

sudo dpkg-reconfigure -plow unattended-upgrades

무인 업그레이드를 구성하라는 메시지가 표시됩니다.

여기에 이미지 설명을 입력하세요.

선택하다아니요업데이트 자동 다운로드 및 설치를 비활성화하고 Enter 키를 누릅니다.

/etc/apt/apt.conf.d/20auto-upgrades그러면 설정이 APT::Periodic::Unattended-Upgrade로 설정된 구성 파일이 업데이트됩니다 "0".

  $ sudo dpkg-reconfigure -plow unattended-upgrades
  Replacing config file /etc/apt/apt.conf.d/20auto-upgrades with new version
  $ cat /etc/apt/apt.conf.d/20auto-upgrades
  APT::Periodic::Update-Package-Lists "0";
  APT::Periodic::Unattended-Upgrade "0";

패키지 구성에 대한 자세한 내용은 다음을 참조하세요.남자 dpkg 재구성

--configure package...|-a|--pending
          Configure a package which has been unpacked but not yet  config‐
          ured.   If  -a  or  --pending  is  given instead of package, all
          unpacked but unconfigured packages are configured.

          Configuring consists of the following steps:

          1.  Unpack  the  conffiles, and at the same time back up the old
          conffiles, so that they can be restored if something goes wrong.

          2. Run postinst script, if provided by the package

dpkg-reconfigure - reconfigure an already installed package

   -pvalue, --priority=value
       Specify the minimum priority of question that will be displayed.
       dpkg-reconfigure normally shows low priority questions no matter
       what your default priority is. See debconf(7) for a list.

   -a, --all
       Reconfigure all installed packages that use debconf. Warning: this
       may take a long time.

--no-reload
           Prevent dpkg-reconfigure from reloading templates. Use with caution; this will prevent
           dpkg-reconfigure from repairing broken templates databases.  However, it may be useful
           in constrained environments where rewriting the templates database is expensive.

관련 정보