Problème :
Lorsque je fais : mount /boot/, j'ai l'erreur suivante :
mount: unknown filesystem type 'ext2'
Si je regarde dans /etc/fstab, j'ai :
/dev/sda1 /boot ext2 defaults 1 2
Solution :
On ajoute un système de journalisation :
tune2fs -O has_journal /dev/sda1
On modifie ext2 en ext3 dans /etc/fstab.
/dev/sda1 /boot ext3 defaults 1 2
Ensuite, on peut effectuer : mount /boot
Liens : Solution
Well *wtf* for the reason but a big THANK YOU for the solution :-)
RépondreSupprimer