Advertisement
corrosiontears

Install Lastest Stable Kernel on OpenSUSE Leap:

Apr 5th, 2017
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.44 KB | None | 0 0
  1. ## Install Lastest Stable Kernel on OpenSUSE Leap: ##
  2.  # Instalar o Kernel mais recente no OpenSUSE Leap #
  3.  
  4. # To add Kernel stable repository, run: / Para adicionar o repositório Estável rode:
  5. sudo zypper addrepo -f http://download.opensuse.org/repositories/Kernel:/stable/standard/ kernel-Standard
  6.  
  7. # Next, run the following command to do distribution upgrade only from the Kernel 'stable' repository. It means the Kernel will only be upgraded to the latest version. / Em seguida, rode o comando abaixo para fazer um upgrade de distribuição apenas o repositório 'estável'. Isso significa que o Kernel apenas será atualizado para a ultima versão.
  8.  
  9. sudo zypper dist-upgrade -r kernel-Standard
  10.  
  11. # Type “a” without quotes to enable Kernel-repo and add the GPG key. / Pressione "a" sem aspas para ativar o repositório e e adicionar a chave GPG.
  12.  
  13. ## Change 'Kernel Purge' configurations / Mudando as configurações de 'Purge Kernel':
  14.  
  15. # To do so, Edit /etc/zypp/zypp.conf file: / Para fazer a alteração edite o arquivo /etc/zypp/zypp.conf :
  16. # To / De:
  17. multiversion = provides:multiversion(kernel)
  18. # For / Para:
  19. multiversion.kernels = latest,latest-1,running,oldest
  20. # Or if you want only keep the lastest Kernel (less safe) / Ou se você desejar manter apenas o mais recente Kernel (menos seguro) :
  21. multiversion.kernels = latest,running
  22.  
  23.  
  24. ## Original Article / Artigo Original : https://www.ostechnix.com/install-linux-kernel-4-10-opensuse/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement