Booted my 11.3 this morning, only to find a message on the boot screen that mentioned that one of my drives hadn’t been checked for more than 180 days - as such the drive was force checked.
As this drive is 2TB in size, this took ages:\
Is there any way that drive/partition checks can be disabled?
Yes there is. If you are know what you are doing you can use tune2fs to turn the check for ext2/3/4 off and you can do the check by hand when you have time using
shutdown -rF now
But THIS IS NOT RECOMNED. an may leave you with a inconsistent filesystem.
To avoid this in the future you could plan to convert the filesystem to ext4. In ext4 this check is seen as not needed and the default there is to do it never.
On ext2/3 I support l1zard not to switch it off. But I admit that it allways is done when one boots with the idea to do some quick things before one goes off to work or whatever. Frustrating then
What is on that disk? More then one partition? What is on the partitions?
When it is just a “data” partition (so not mounted on e.g. / or* /boot*, but something like /home or /database or* /home/ashley194/pictures*) the only thing to do is:
save the data;
2a. either use YaST > System > Partitioner to reformat it and let YaST do implicitly all the rest (like adapting /etc/fstab, unmounting, mounting);
2b. orumount, use* mkfs.ext4* (see man mk2fs, you can also call* mk2fs -t ext4*), change the appropriate* /etc/fstab *entry by making ext3 into ext4, mount;
restore your data.
No reboot needed for non “system” partitions, but the partition must not be used by any user of course.