Comment réparer une erreur de système de fichiers inconnu grub rescue


J'ai été confronté au même problème il y a une semaine lorsque ma sœur a obtenu un ordinateur portable HP qui est venu avec Windows 8.1 et Ubuntu préchargé. Le Windows était partitionné avec 320 Go de disque non partitionné et le reste était alloué pour Ubuntu. Tout ce que j'ai fait, c'est de partitionner mon disque dur dans Windows. Puis une fois que j'ai redémarré mon ordinateur portable, il a dit "système de fichiers inconnu" "Grub Rescue" & je ne pouvais pas aller plus loin.


Après avoir lutté pendant des heures, j'ai pu résoudre le problème du chargeur de démarrage. Voici ce que j'ai fait :
-Cessez de paniquer, vous n'avez pas perdu vos données.
-Enclenchez l'ordinateur portable, attendez jusqu'à ce que vous obteniez l'écran Grub Rescue.
-Tapez les commandes suivantes

  • ls
  • Il vous montrera une liste des partions que vous avez faites.
  • You will get something like this (hd0),(hd0,msdos1)(hd0,msdos2)(hd0,msdos4)
  • You need to find which drive is your Ubuntu root for which type the following:
  • set prefix= (hd0,msdos1)/boot/grub
  • If it’s not the root drive you will get an error message "unknown filesystem". In that case try the same command with the next partion, ex: set prefix=(hd0,msdos2)/boot/grub
  • If you are not getting an error: Congrats, you have found your root drive. You can proceed to the next command after that:
  • set prefix=(hd0,msdos1)/boot/grub
  • insmod normal
  • normal
  • Your PC will now boot successfully. Now select Ubuntu & login.
  • Open Terminal( Ctr+Alt+T or use the search)
  • sudo update-grub
  • sudo grub-install /dev/sda
  • Now the bootloader error is fixed you should be able to boot your laptop normally & even your data is intact.

If sudo update-grub didn't work, type sudo grub-update