Bonjour,
J'ai installé récemment une version server 20.04 sur mon pc et je galère avec le boot et les versions de noyau.
En fait j'essaie de comprendre mais j'ai énormément de mal.
J'ai un boot EFI :
****@ubuntu:~$ [ -d /sys/firmware/efi ] && echo "Session EFI" || echo "Session non-EFI"
Session EFI
Lorsque je lis mon fstab, j'ai :
****@ubuntu:~$ sudo cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
...
# /boot was on /dev/sda2 during curtin installation
/dev/disk/by-uuid/e3e778fc-2c3a-4f8f-88a4-8ce6acbabb58 /boot xfs defaults 0 0
...
# /boot/efi was on /dev/sda1 during curtin installation
/dev/disk/by-uuid/7658-4D51 /boot/efi vfat defaults 0 0
Enfin quand je jette un oeil sur la version de noyau active, j'ai :
****@ubuntu:~$ cat /proc/version
Linux version 5.4.0-37-generic (buildd@lcy01-amd64-001) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #41-Ubuntu SMP Wed Jun 3 18:57:02 UTC 2020
alors que :
****@ubuntu:~$ dpkg -l | awk '!/^rc/ && / linux-(c|g|h|i|lo|m|si|t)/{print $1,$2,$3,$4 | "sort -k3 | column -t"}'
ii linux-headers-5.4.0-37 5.4.0-37.41 all
ii linux-headers-5.4.0-37-generic 5.4.0-37.41 amd64
ii linux-image-5.4.0-37-generic 5.4.0-37.41 amd64
ii linux-modules-5.4.0-37-generic 5.4.0-37.41 amd64
ii linux-modules-extra-5.4.0-37-generic 5.4.0-37.41 amd64
ii linux-headers-5.4.0-40 5.4.0-40.44 all
ii linux-headers-5.4.0-40-generic 5.4.0-40.44 amd64
ii linux-image-5.4.0-40-generic 5.4.0-40.44 amd64
ii linux-modules-5.4.0-40-generic 5.4.0-40.44 amd64
ii linux-modules-extra-5.4.0-40-generic 5.4.0-40.44 amd64
ii linux-headers-5.4.0-42 5.4.0-42.46 all
ii linux-headers-5.4.0-42-generic 5.4.0-42.46 amd64
ii linux-image-5.4.0-42-generic 5.4.0-42.46 amd64
ii linux-modules-5.4.0-42-generic 5.4.0-42.46 amd64
ii linux-modules-extra-5.4.0-42-generic 5.4.0-42.46 amd64
ii linux-generic 5.4.0.42.46 amd64
ii linux-headers-generic 5.4.0.42.46 amd64
ii linux-image-generic 5.4.0.42.46 amd64
J'ai donc deux questions :
Pourquoi deux entrées dans ma fstab ?
Pourquoi le noyau actif n'est pas le dernier présent sur mon linux ?
Enfin question subsidiaire : je n'ai aucun menu grub qui s'affiche au démarrage de ma machine, je n'ai qu'un écran gris.
Merci par avance pour votre aide.