Como faço para impedir / desabilitar atualizações automáticas de serem iniciadas automaticamente? [duplicado]

0

Instalei recentemente o Trisquel 8.0 LTS (Flidas) no meu PC Desktop que estava sendo executado no Trisquel 7.0 por 4 anos. O sistema ficou muito lento. Quando eu verifico a RAM e o uso da CPU, descobri que a CPU está quase a 100%. Eu tun top para ver o que está errado e descobri que unattended-upgr está consumindo toda a CPU.

Eu tentei matá-lo pelo PID usando sudo kill 1803 , mas depois de algum tempo, ele começou de novo automaticamente. Sei que Upgrades Autônomos têm a finalidade de instalar automaticamente atualizações de segurança importantes, mas preciso desativá-lo automaticamente.

Como faço isso?

    
por Pandya 22.09.2018 / 14:53

1 resposta

1

Você precisaria interromper o atualizador automático da seguinte forma:

Execute o seguinte comando

sudo dpkg-reconfigure -plow unattended-upgrades

Você verá a solicitação para configurar atualizações autônomas:

SelecioneNãoparadesativarodownloadautomáticoeainstalaçãodeatualizaçõesepressioneEnter.

Paramaisinformaçõessobrecomoconfigurarpacotes,veja man dpkg-reconfigure

--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.
    
por 22.09.2018 / 15:29