does your device otherwise boot and run normally? if so, you can safely ignore the errors that you get at boot time.
– EstherJul 04 '22 at 18:47
@Esther yes it does, but the filesystem check on every boot up bothers me, also if i do fsck on my efi partition every time it shows dirty bit set
– HOSENURJul 04 '22 at 19:26
@Esther no, my root partition , swap, efi is in a SSD and home partition in a HDD
– HOSENURJul 04 '22 at 19:35
you can clear the dirty bit manually with fsck -a <device>. If that's all that's causing issues, that should fix it. In general you can run fsck on disks if you want to fix filesystem errors.
– EstherJul 04 '22 at 19:38
The dirty bit on FAT filesystems, in general, gets set on every mount and unset on successful unmount. If the dirty bit is set, the partition didn't get unmounted properly.
– EstherJul 04 '22 at 19:42
fsck -a <device>
. If that's all that's causing issues, that should fix it. In general you can runfsck
on disks if you want to fix filesystem errors. – Esther Jul 04 '22 at 19:38