Por padrão, seu kernel 3.18 com numeração mais alta ainda será carregado pelo grub durante a inicialização. Existem algumas opções: Basta tornar o grub visível e com um tempo limite maior, para que você possa selecionar o kernel que deseja (sugerido para pessoas que geralmente experimentam kernels diferentes); modifique o grub para selecionar o kernel "out of the box" por padrão (sugerido se você quiser manter o kernel 3.18); exclua quaisquer novos kernels de teste para que o "fora da caixa" se torne o mais numerado e, portanto, o padrão.
Vou expandir a terceira opção (o kernel 3.18 sempre pode ser reinstalado novamente, se desejado no futuro):
Inicialize em um kernel que você não estará excluindo. listar todos os kernels e cabeçalhos:
dpkg -l | grep linux-
exclua manualmente os kernels de teste numerados mais altos. Você pode e cole a partir da listagem acima. Exemplo:
doug@s15:~$ uname -a
Linux s15 3.13.0-45-generic #74-Ubuntu SMP Tue Jan 13 19:36:28 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
doug@s15:~$ dpkg -l | grep linux-
ii linux-firmware 1.127.11 all Firmware for Linux kernel drivers
...
ii linux-headers-3.19.0-rc3-250 3.19.0-rc3-250-188 amd64 Linux kernel headers for 3.19.0-rc3-250 on amd64
ii linux-headers-3.19.0-rc5-250 3.19.0-rc5-250-189 amd64 Linux kernel headers for 3.19.0-rc5-250 on amd64
...
ii linux-image-3.19.0-rc3-250 3.19.0-rc3-250-188 amd64 Linux kernel, version 3.19.0-rc3-250
ii linux-image-3.19.0-rc5-250 3.19.0-rc5-250-189 amd64 Linux kernel, version 3.19.0-rc5-250
...
doug@s15:~$ sudo dpkg -r linux-headers-3.19.0-rc3-250
(Reading database ... 230997 files and directories currently installed.)
Removing linux-headers-3.19.0-rc3-250 (3.19.0-rc3-250-188) ...
doug@s15:~$ sudo dpkg -P linux-image-3.19.0-rc3-250
(Reading database ... 211869 files and directories currently installed.)
Removing linux-image-3.19.0-rc3-250 (3.19.0-rc3-250-188) ...
update-initramfs: Deleting /boot/initrd.img-3.19.0-rc3-250
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.19.0-rc5-250
Found initrd image: /boot/initrd.img-3.19.0-rc5-250
Found linux image: /boot/vmlinuz-3.13.0-45-generic
Found initrd image: /boot/initrd.img-3.13.0-45-generic
Found linux image: /boot/vmlinuz-3.13.0-44-generic
Found initrd image: /boot/initrd.img-3.13.0-44-generic
Found linux image: /boot/vmlinuz-3.13.0-43-generic
Found initrd image: /boot/initrd.img-3.13.0-43-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
Found Ubuntu 14.04 LTS (14.04) on /dev/sdb5
done
Purging configuration files for linux-image-3.19.0-rc3-250 (3.19.0-rc3-250-188) ...
Nota: você pode ter mais cabeçalhos e imagens para remover por kernel, dependendo de onde eles são.