Mastering the fsck Command: Repair Linux File Systems Like a Pro

Linux TLDR
Last Updated:
Reading time: 4 minutes

The β€œfsck” command (which stands for β€œfile system checkβ€œ) is a Linux command-line utility used to check and repair the integrity of a file system on storage devices like HDDs or SSDs.

Nowadays, Linux filesystems support journaling, which eliminates the need for fsck. However, there are certain situations where files can still become corrupted. Such are…

  • Power outage
  • Hardware failures
  • Improper shutdowns (major cause)

This article will guide you through the use of the fsck command to effectively repair errors on your Linux file systems.

Tutorial Details

DescriptionFsck (File System Check)
Difficulty LevelModerate
Root or Sudo PrivilegesYes
OS CompatibilityUbuntu, Manjaro, Fedora, etc.
Prerequisites–
Internet RequiredNo

Fsck Command and Options

As previously mentioned in this article, the β€œfsck” command is used to check and repair the integrity of a Linux file system.

Notably, Fsck acts as a β€œfront-end” for various file system specific checkers, such as fsck.vfat, fsck.ext2, fsck.ext4, and more.

Running the following command reveals all available file system checkers utilized by fsck on your running Linux system.

$ which fsck
$ ls -l /usr/sbin/fsck*

Output:

Listing the available file checkers in the Linux system

My system is currently running on Ubuntu with an ext4 partition, so when I execute the β€œfsck” command, it utilizes the fsck.ext4 (as a hard link) file checker.

If you’re using a system with a different partition, there’s no need to specify the file checker directly. Instead, utilize fsck, which will automatically select the most suitable file checker based on your system.

The installation process for fsck is omitted as it’s preloaded in all Linux distributions. Thus, I recommend you explore the following key options that enhance command usage:

OptionsUsage
-APerform filesystem checks and repairs for all entries listed in β€œ/etc/fstabβ€œ.
-CShow the progress bar.
-lDuring the checks and repairs, lock the filesystem to prevent access by any other program.
-MAvoid checking and repairing mounted filesystems.
-NDisplay the possible changes without applying them.
-PParallelly inspect all filesystems, including the root.
-RSkip the root filesystem; this option is only beneficial when used with β€œ-Aβ€œ.
-rReport statistics for every device that has been examined.
-THide the title.
-tSpecify Linux filesystem types exclusively for checking with comma-separated lists.
-VProvide a comprehensive description of the ongoing activities.

Let’s check out the usage of this command and how you can check for and repair problems revolving around your Linux file systems.

How to Use fsck to Repair Linux File System Errors

Before proceeding, it’s important to note that file systems must be unmounted before utilizing the β€œfsck” command for inspecting and repairing them.

As for the additional file systems apart from the root, which can be easily unmounted and repaired while the system is running, repairing the root file systemβ€”the foundation of the operating systemβ€”requires a distinct approach.

Stay with this article until the end to discover how to check and repair both additional and root file systems effectively. Starting with…

Repair the Additional Linux File Systems

To successfully execute fsck, first identify the partition and ensure it’s unmounted. To list all available file systems on your system, use the following two df or lsblk commands:

$ df

#OR

$ lsblk

Output:

Listing the file systems

Before repairing any mounted devices in β€œ/mnt” check them using the ls command.

Suppose you intend to run fsck on the β€œ/dev/sda4” partition, which is presently mounted. What happened next? Let’s find out.

$ sudo fsck /dev/sda4

Output:

Repairing the mounted partition

As you can see from the above picture, the process to repair β€œ/dev/sda4” has been aborted since it’s currently mounted.

To perform checks and repairs, first unmount the partition.

$ umount /dev/sda4

Then perform the check and repair using the β€œfsck” command:

πŸ’‘
You can also specify some additional flags, such as β€œ-p” for enabling automatic repairs and β€œ-y” for applying fixes to identified filesystem issues.
$ sudo fsck /dev/sda4

Output:

Performing checks and repairs on an unmounted partition

Whenever you perform the checks and repairs using the β€œfsck” command, it will return an exit status code that can be checked using β€œecho $?β€œ.

Here are some fsck exit codes straight from the manual:

  • 0 – No errors
  • 1 – File system errors corrected
  • 2 – System reboot is required
  • 4 – File system errors left uncorrected
  • 8 – Operational error
  • 16 – Usage or syntax error
  • 32 – User-requested fsck cancellation
  • 128 – Shared library error

This exit code is helpful to determine the status of fsck once the process has been completed.

Repair the Linux Root File System

To perform checks and repairs on the Linux root partition using the β€œfsck” command can be done in four different ways:

  • Enforce fsck during system startup.
  • Run fsck in rescue mode.
  • Fsck Check Using the tune2fs Command.
  • Boot into a live CD environment (skipped as it’s self-explanatory).

Let’s begin with…

Enforce fsck During System Startup

To ensure fsck runs on the root partition during the next system boot, just create a file named β€œforcefsck” in the root directory, which signals the system to run fsck during the next boot.

$ sudo touch /forcefsck

During the upcoming bootup, a fsck will be performed. Ensure to account for potential downtime, especially if this action is being executed on a server.

Once the system is booted, ensure the β€œforcefsck” file is deleted from the root partition to prevent continuous fsck checks on every boot.

Run fsck in Rescue Mode

Running fsck in rescue mode is a straightforward process. Simply reboot your system, hold down the β€œSWIFT” key if necessary to access the GRUB menu, and then choose β€œAdvanced Options for Ubuntuβ€œ.

Entering the advanced option for Ubuntu in rescue mode

Then choose β€œrecovery mode” with the latest kernel.

Entering the recovery mode

Now, select β€œfsck” from the provided list.

Choosing fsck from the list

When prompted, grant remount permissions for root and other file systems listed in β€œ/etc/fstab” by choosing β€œyesβ€œ.

Allowing remounting for root and other partitions

And that’s all it takes to begin the fsck on your Linux root file system.

Fsck Check Using the tune2fs Command

Modern Linux systems come with the tune2fs tool, allowing you to enable automatic fsck checks using the β€œ-c n” flag. This ensures that fsck runs every β€œn” boot for the Linux root partition.

πŸ“
In the following command, β€œ/dev/sda3” represents the root partition in my system, while in your case, you can identify it using either the β€œdf” or β€œlsblk” commands.
$ sudo tune2fs -c 1 /dev/sda3

Output:

Setting fsck check using the tune2fs

After executing this command, fsck will check only during the first boot that follows.

Alternatively, you can even run fsck once a week or month by specifying the interval using the β€œ-i” flag, as shown.

$ sudo tune2fs -i 1w /dev/sda3                                                                                       #Run fsck once a week
$ sudo tune2fs -i 1m /dev/sda3                                                                                       #Run fsck once a month

To determine the last partition check or its future schedule, execute the command below, specifying the partition path.

$ sudo tune2fs -l /dev/sda3 | egrep -i 'check|mount'

Output:

Checking the scheduled parition check
  • The β€œMaximum mount count” represents the number of mounts that prompt an automatic fsck filesystem check.
  • The β€œCheck interval” represents the duration between two filesystem checks.

That’s all for now!

Final Word

I hope you find this article useful, as performing checks and repairs on Linux root file systems offers multiple ways. The most recommended one is using the tune2fs tool, as it is more user-friendly.

Now, if you have any questions or queries related to this article, feel free to ask them in the comment section.

Till then, peace!

Join The Conversation

Users are always welcome to leave comments about the articles, whether they are questions, comments, constructive criticism, old information, or notices of typos. Please keep in mind that all comments are moderated according to our comment policy.