| by Arround The Web | No comments

Check Disk for Errors Linux Mint 20.3

It is prevalent for your system disks to become corrupted. However, the extent to which this corruption occurs may vary from situation to situation, i.e., you may have your entire disk corrupted or some of its partitions only. Nevertheless, in either case, you need to identify and fix these issues well in time to save yourself from a more significant and serious problem. Therefore, this guide will teach you how to check the disk for errors on a Linux Mint 20.3 system.

How To Check the Disk for Errors in Linux Mint 20.3

To check the disk for errors in Linux Mint 20.3, you have to follow the following steps:

Step 1: Choose a Disk Partition That You Want To Check for Errors
First, you must identify and select a disk partition that you want to examine for potential errors. For that, you can list down all of your disk partitions with the following command:

$ sudo fdisk –l

All the partitions of your Linux Mint system will appear on the terminal after executing this command. From here, you can easily pick one partition for checking errors. In our case, we have chosen the “/dev/sda” partition as highlighted below:

Step 2: Save the Errors in a Text File
Now, for scanning the selected partition for errors and saving them for later usage, we will execute the following command:

$ sudo badblocks –v /dev/sda > /scan_result/badsectors.txt

This command will look for the bad blocks within the specified disk partition and save them in the file “badsectors.txt”.

Step 3: Pass the Text File to the “fsck” Tool
Finally, we need to pass this information on to our Linux Mint system so that it can take preventive measures to avoid these bad blocks. We can do this by running the following command:

$ sudo fsck –l /scan_result/badsectors.txt /dev/sda

The previous command will ensure that our system does not use the bad blocks conveyed to it via the “badsectors.txt” file while working with the specified disk partition to avoid all sorts of associated issues.

Conclusion

This article was intended to explain to you the procedure of checking the disk for errors on a Linux Mint 20.3 system. Now, by using this procedure, you can conveniently examine any disk partition of your choice for errors. This way, you can save yourself from getting into a mess later.

Share Button

Source: linuxhint.com

Leave a Reply