How to Repair File System Errors in Linux Mint

Using Linux Mint makes Linux a user-friendly operating system environment for all the right reasons. Whether you are interested in gaming, multimedia, graphic design, or improving your productivity, Linux Mint is fully equipped with all the apps you might need. It is a user-centered and community-centric Linux distribution.

The Linux Mint community and its development team have a great bond that turns user feedback into prime system updates and bug fixes. On top of being open-source, Linux Mint is famed for low memory usage and feature-rich software sources.

Linux Mint File System Errors

All these benefits of using Linux Mint as your default Linux operating system distribution come at the cost of being able to overcome one major hurdle; file system errors.

File system errors occur when we can’t control OS-related behaviors like hardware failures, improper startup procedures, and NFS write errors. The outcome of such OS-related behaviors is lagging or reduced performance and efficiency of the Linux operating system.

Repairing File System Errors in Linux Mint

To repair file system errors in Linux Mint, you need to use an FSCK terminal-based utility, which is used to identify and resolve file system errors.

The standard usage syntax for FSCK looks like the following.

# fsck [COMMAND_OPTIONS] [TARGETED_FILESYSTEM]

To use FSCK, ensure you are a root user or have Sudoer privileges on the system. There are some important FSCK rules to follow:

  • Identify the partitions you are interested in repairing via the command fdisk -l.
  • Use the command syntax umount /dev/sdx to unmount the targeted filesystem partition for repair.
  • Perform a filesystem partition repair with the command fsck -p on the unmounted partition /dev/sdx.
  • Remount the repaired filesystem partition.

Repairing Non-Root File Systems in Linux Mint

When dealing with such kinds of file systems, you do not necessarily need to reboot your operating system to utilize the Grub menu’s Advanced Options menu for any repair attempt. It could even be a file system defined on an external USB drive.

Consider the following file system repair steps.

1. List all non-root filesystem partitions to identify the one to repair.

$ sudo fdisk -l
List Linux Mint Partitions
List Linux Mint Partitions

2. Unmount the partition and attempt filesystem repair.

$ sudo umount /dev/sdb
$ sudo fsck -p /dev/sdb

The -p an option is for automatic repair of any broken file.

3. Next, remount the filesystem partition by unplugging it and plugging it back on your computer, and confirm that it is online.

$ sudo fdisk -l
Mount Linux Mint Partition
Mount Linux Mint Partition

Repairing Root File Systems in Linux Mint

Since repairing the filesystem of a running OS is risky, we need the operating system to be on boot mode.

To force Linux Mint to repair and fix root filesystem errors, create the following file and restart your machine.

$ sudo touch /forcefsck

You will however need to create this file every time a file system check needs to take place as the OS deletes it once it is done with it.

A more permanent solution is to set files system check and repair to execute after a specific number of system boots. If we want it to take place after two system boots, the command to execute is as follows:

$ sudo fdisk -l
$ sudo tune2fs -c 2 /dev/sda5
Repair Linux Mint File System on Boot
Repair Linux Mint File System on Boot

From here you should be good to go.

File system errors can affect the responsiveness and performance of your Linux Mint OS to the extend of you considering a fresh re-install of the OS. However, exploring the use of the fsck utility saves you from such drastic actions.

$ man fsck
Tutorial Feedback...
Was this article helpful? If you don't find this article helpful or found some outdated info, issue or a typo, do post your valuable feedback or suggestions in the comments to help improve this article...

1 thought on “How to Repair File System Errors in Linux Mint”

  1. This “fsck” utility saved my computer’s bacon a little over a year ago. I was using Linux Mint 19.2 and had mounted an external drive that was formatted exFAT. I don’t think the external drive unmounted properly, and suddenly programs wouldn’t launch, and I couldn’t reboot successfully.

    I then booted from a Parted Magic system rescue disc. I ran the “fsck” program from the rescue disc, and I gave it permission to fix all problems found, which were about ten or twelve in quantity.

    The utility finished, and I was again able to boot from the hard drive. There’s never been an indication of any problem since. I considered it a miracle and was very grateful to not have to rebuild my system.

    Reply

Got Something to Say? Join the Discussion...

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published or shared. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.