OK,Try a different route, log in to your laptop then:Get last time filesystem was checkedCode: [Select]sudo tune2fs -l /dev/sda2 | grep Last\ cthen mount count since thenCode: [Select]sudo tune2fs -l /dev/sda2 | grep Mountcheck how many mounts are all...
OK,Try a different route, log in to your laptop then:
Get last time filesystem was checked
Code: [Select]
sudo tune2fs -l /dev/sda2 | grep Last\ c
Code: [Select]
sudo tune2fs -l /dev/sda2 | grep Mount
Code: [Select]
sudo tune2fs -l /dev/sda2 | grep Max
To force fsck on every boot:
Code: [Select]
sudo tune2fs -c 1 /dev/sda2
Code: [Select]
sudo tune2fs -c 10 /dev/sda2
To disable fsck on boot
[code]sudo tune2fs -c -1 /dev/sd...