Support
Forums

Re: Frequent crashing of 18.04

Check if /dev/sda is mountedCode: [Select]mount | grep "/dev/sda*"if it is then unmount itCode: [Select]sudo umount /dev/sda2then run fsck to test and repair (this will be verbose)Code: [Select]sudo fsck -pvf /dev/sda2orCode: [Select]sudo fs...
Check if /dev/sda is mounted
Code: [Select]
mount | grep "/dev/sda*"

if it is then unmount it
Code: [Select]
sudo umount /dev/sda2

then run fsck to test and repair (this will be verbose)
Code: [Select]
sudo fsck -pvf /dev/sda2

or

Code: [Select]
sudo fsck -yvf /dev/sda2