Fedora multiplica no grub após atualização dnf

0

Eu corro sudo dnf update algumas vezes e funcionou bem. Mas agora é isso que eu recebo no GRUB

Parece que cria um Fedora separado para cada versão. Eu corri

sudo grub2-mkconfig -o /boot/grub2/grub.cfg

várias vezes, mas isso não ajudou. Isso é o que eu voltei

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.12.11-300.fc26.x86_64
Found initrd image: /boot/initramfs-4.12.11-300.fc26.x86_64.img
Found linux image: /boot/vmlinuz-4.12.9-300.fc26.x86_64
Found initrd image: /boot/initramfs-4.12.9-300.fc26.x86_64.img
Found linux image: /boot/vmlinuz-4.11.8-300.fc26.x86_64
Found initrd image: /boot/initramfs-4.11.8-300.fc26.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-206e415ec0e847f28f01e95ee6400ce1
Found initrd image: /boot/initramfs-0-rescue206e415ec0e847f28f01e95ee6400ce1.img
Found Windows Boot Manager on /dev/sda1@/EFI/Microsoft/Boot/bootmgfw.efi
done

Eles estão disponíveis aqui:

[iron@localhost boot]$ ls | grep vmlinuz
vmlinuz-0-rescue-206e415ec0e847f28f01e95ee6400ce1
vmlinuz-4.11.8-300.fc26.x86_64
vmlinuz-4.12.11-300.fc26.x86_64
vmlinuz-4.12.9-300.fc26.x86_64

Eu posso excluir a partir daqui a pasta /boot/ , mas não tenho certeza se isso não vai atrapalhar.

ATUALIZAÇÃO: Eu decidi mover os arquivos para uma pasta diferente, então agora atualizar o GRUB me dá isso

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.12.11-300.fc26.x86_64
Found initrd image: /boot/initramfs-4.12.11-300.fc26.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-206e415ec0e847f28f01e95ee6400ce1
Found initrd image: /boot/initramfs-0-rescue-206e415ec0e847f28f01e95ee6400ce1.img
Found Windows Boot Manager on /dev/sda1@/EFI/Microsoft/Boot/bootmgfw.efi
done

Eu tentei reiniciá-lo, e ele foi inicializado ok, mas na tela do GRUB NÃO foi alterado. Alguma idéia do que fazer agora?

    
por Alex Ironside 12.09.2017 / 23:36

2 respostas

0

O Fedora dá-lhe a opção de inicializar o kernel mais recente ou antigo que o seu sistema tenha instalado. Este é um recurso realmente importante quando um kernel, após uma atualização, por exemplo, permite que seu computador se comporte de maneira estranha. Você tem 2+ kernels de backup x .

O número de kernels que o Fedora manterá é definido em /etc/dnf/dnf.conf . O parâmetro é chamado installonly_limit=x , onde x é o número de kernels instalados de uma só vez.

por exemplo,

installonly_limit=6

    
por 19.09.2017 / 06:05
0

Ok, acontece que é normal. Mais informações em um comentário aqui:

link

Actually, from what you're showing, it only has three Fedora kernels listed, and even if you do nothing, it will stay that way, with the oldest kernel removed every time a new one's installed. This is a safety feature in case there's a problem with a new kernel because you should always have two known good kernels to use instead. My advice is to simply leave things alone and don't worry about it. — sideburns (CC-BY-SA)

    
por 13.09.2017 / 01:30