Eu não quero atualizar 12.04 [closed]

-1

Como posso continuar atualizando o 12.04, mas não atualizando para uma versão mais alta do Ubuntu? Em outras palavras, quero instalar todas as atualizações disponíveis para o 12.04, sem instalar inadvertidamente uma atualização de versão no 14.04 ou em um dos releases de desenvolvimento.

    
por Jack Ouzzie 13.07.2015 / 15:20

3 respostas

2

Basta executar este comando único

sudo perl -i -pe 's/Prompt=.*/Prompt=never/' /etc/update-manager/release-upgrades

Isso é tudo ;)

Exemplo

Meu /etc/update-manager/release-upgrades antes

% cat /etc/update-manager/release-upgrades                                          
# Default behavior for the release upgrader.

[DEFAULT]
# Default prompting behavior, valid options:
#
#  never  - Never check for a new release.
#  normal - Check to see if a new release is available.  If more than one new
#           release is found, the release upgrader will attempt to upgrade to
#           the release that immediately succeeds the currently-running
#           release.
#  lts    - Check to see if a new LTS release is available.  The upgrader
#           will attempt to upgrade to the first LTS release available after
#           the currently-running one.  Note that this option should not be
#           used if the currently-running release is not itself an LTS
#           release, since in that case the upgrader won't be able to
#           determine if a newer release is available.
Prompt=normal

Substitua Prompt=<any_string> por Prompt=never

% sudo perl -i -pe 's/Prompt=.*/Prompt=never/' /etc/update-manager/release-upgrades

Meu /etc/update-manager/release-upgrades após

% cat /etc/update-manager/release-upgrades                                         
# Default behavior for the release upgrader.

[DEFAULT]
# Default prompting behavior, valid options:
#
#  never  - Never check for a new release.
#  normal - Check to see if a new release is available.  If more than one new
#           release is found, the release upgrader will attempt to upgrade to
#           the release that immediately succeeds the currently-running
#           release.
#  lts    - Check to see if a new LTS release is available.  The upgrader
#           will attempt to upgrade to the first LTS release available after
#           the currently-running one.  Note that this option should not be
#           used if the currently-running release is not itself an LTS
#           release, since in that case the upgrader won't be able to
#           determine if a newer release is available.
Prompt=never
    
por A.B. 13.07.2015 / 21:25
5

Você pode continuar atualizando o 12.04 sem atualizar para uma nova versão.

O suporte do Ubuntu 12.04 é até o final de abril de 2017.

Se você está incomodado com a opção de atualização do lançamento, vá para

Configurações do sistema - > Software & amp; Atualizações e desligue essa notificação.

    
por Pilot6 13.07.2015 / 15:24
2

Não sei ao certo como você está atualizando. Eu uso o Update Manager, que aparece uma vez por dia com todas as atualizações. No topo, mostra a atualização 14.04, mas eu simplesmente ignoro o botão. No canto inferior esquerdo está um botão de configurações que me permite mostrar quais atualizações postar.

Anexei uma imagem das configurações que uso.

Se você tiver essas configurações, escolher "Instalar atualizações" não atualizará o sistema. Apenas atualiza as peças LTS e qualquer software que você tenha instalado.

    
por Buck 13.07.2015 / 23:20