run fsck from a Live-CD/Live-USBIdentify partitionsCode: [Select]sudo fdisk -lMake sure they are unmounted:Code: [Select]for n in /dev/sda* ; do umount $n ; donethen run fsck on them (substitute X to suit):Code: [Select]e2fsck /dev/sdaX
run fsck from a Live-CD/Live-USBIdentify partitions
Code: [Select]
sudo fdisk -l
Make sure they are unmounted:
Code: [Select]
for n in /dev/sda* ; do umount $n ; done
then run fsck on them (substitute X to suit):
Code: [Select]
e2fsck /dev/sdaX