Support
Forums

Re: Frequent crashing of 18.04

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
then mount count since then
Code: [Select]
sudo tune2fs -l /dev/sda2 | grep Mount
check how many mounts are allowed before check
Code: [Select]
sudo tune2fs -l /dev/sda2 | grep Max

To force fsck on every boot:
Code: [Select]
sudo tune2fs -c 1 /dev/sda2
or every 10 boots
Code: [Select]
sudo tune2fs -c 10 /dev/sda2

To disable fsck on boot
[code]sudo tune2fs -c -1 /dev/sd...