Computer

How to fix a corrupt NTFS hard drive

A file system is nothing more than the way the operating system uses to organize the data. If the file system becomes corrupted the hard drive may start running much slower than usual allowing the computer to continue using it. In the worst case, the file system disappears and we have to recreate it trying to preserve the operating system.

Some of the main reasons why a hard drive may stop working are:

  • faulty hard drive. If the hard disk is damaged by continued use, over time, some sectors stop working. If those sectors contain or are part of the system partition, the computer will start to work slower than usual until, if we don’t repair it before, it will stop working completely.
  • Virus. A virus or any other type of malware that has crept into our computer may also have caused the problem, if its main mission was to damage the boot partitions of the computer to make the data inaccessible.
  • Problems during Windows installation. If during the installation, we have not correctly created a boot sector for the drive, something quite unlikely if we use the Windows installer, the computer will not find a partition with the boot system that allows it to load the operating system.

How to repair an NTFS hard drive from Windows

If our computer starts up, even if it does so erratically, we can solve this problem by following some of the different methods that we show you below.

From command line

The fastest and easiest method to repair a damaged or corrupt hard drive partition while it is accessible by the computer is to use the check disk (CHKDSK) command from the command line using CMD.

First of all, we access the Windows search box and write CMD selecting the first result that is displayed (Command Prompt). Next, we will use the following command that will scan the hard drive for errors, will repair the NTFS partition of the computer and will repair bad sectors.

chkdsk /f /r

If we want to repair an external hard drive connected to our computer, we must accompany that command with the drive letter. For example, if the hard drive with the damaged partition is located in drive d, we must use the command

chkdsk d: /f /r

If it is a RAW partition

A RAW partition in Windows means that the computer does not recognize the file structure of the partition, so you cannot access the drive to read the data. This usually happens when the drive has been damaged or the file system is not recognized by the computer.

To be able to access that partition again, the first thing we must do is convert it to NTFS format without losing the data stored inside it. To do so, we will use Command Prompt and the Diskpart utility. From the command line we write the following commands:

diskpart

list disk To list the drives connected to the computer

select disk n Where n is the number of the unit we want to repair

Once we have identified the drive in RAW format, we must delete all partitions using the following command

clean

Next, we create a primary partition

create partition primary

Finally, we use the active command. If by carrying out this process, we have not been able to solve the problem, we will be forced to format the unit or use one of the different available applications that will help us to recover the data and change the format of the unit.

Repair Windows boot

We can also use the windows recovery optionsan automatic recovery menu that is automatically displayed when the computer detects that the computer has been restarted for 3 consecutive times during the boot process without ending the process.

In that window, click on Advanced Optionsthen click on Solve problems and Advanced Options. Within this menu, click on the Startup Repair option and wait for the process to finish.

repair secure boot

Using these apps

If none of the solutions that we have shown you so far have worked, we can use applications created to solve this type of problem, such as the ones we show you below.

Mini Tool Partition Wizard

One of the most complete applications for recover windows boot partitions and in other formats it is Mini Tool Partition Wizard, an application that also allows us to recover data from drives that are not accessible.

This application is available for download completely free of charge, it is compatible from Windows 7 and it works without any problem in Windows 11. We can download this application directly from its website by clicking on the following link.

mini toolpartition

We also have at our disposal a Pro version for many more, functions that we can try completely free of charge for 7 daysso it is not necessary to pay for the application to repair our hard drive if we do not take more than 7 days to do it.

Data Recovery Software

With this very descriptive name, we find a powerful application available for Windows and Linux that allows us to restore FAT, NTFS and HFS file partitions. In addition, it also includes a powerful tool that allows us to recover a large number of types of files that have been deleted due to losing a partition.

Data Recovery Software

This application is compatible from Windows XP onwards, although older versions of the application for such old operating systems lack the functions that allow us to recover data in both Windows 10 and Windows 11. We can download a trial version of the application and if we see that it works correctly, we can buy the paid version with all the functions unlocked for 69 dollars.

Repair an NTFS drive from Linux

The file system in Linux is ext4, at least or in most of the newer Linux distros. However, unlike Windows, which is not capable of reading drives in this format, nor in previous versions (ext2 and ext3), Linux is capable of reading drives with the Windows NTFS file system. Thanks to this compatibility, we can use Linux to repair a corrupt NTFS partition.

If, in addition to Windows, we have a partition with a Linux distribution installed on the computer, we just have to start it and access the terminal. But if not, we can create a Linux installation disk on a USB, to load Linux memory starting from the USB that allows us to execute the commands that we are going to need to repair the NTFS partition.

If we do not have a Linux distribution installed on our computer, the first thing we should do is download one. From Softzone, we recommend using Ubuntu, because it is one of the distros that offers the greatest support and because it is one of the most complete distros that we can find today. To download the latest version of Ubuntu in its LTS version (with support for several years), we access the following link and download the ISO image by clicking on the Download button.

Next, we download the Rufus application to create a bootable drive from the version of Ubuntu we downloaded. To create an installation USB, we need a USB drive with a minimum capacity of 8 GB, a drive that will be formatted to install the Ubuntu ISO, so all the content stored inside it will be lost.

Once we start Rufus, in Device we select the USB drive that we are going to use. In Boot Choice, we select Disk or ISO image and click on Select to select (forgive the redundancy) the Ubuntu ISO image that we have downloaded. The rest of the options we leave as they are. To start the process, click Start.

Linux boot disk

Once the process is finished, we connect the USB drive to the computer where we want to reparate NTFS formatted drivewe access the BIOS and modified the system to use the USB that we have connected as a boot drive.

In the boot menu that shows the equipment, we select, of the 4 options that are shown, Try or Install Ubuntu and wait for it to load into memory. Once the Ubuntu graphical interface has loaded, select Spanish in the left column and then click on Try Ubuntu.

Once the graphical interface of the Linux distro that we have installed has loaded, click on the last icon in the options sidebar and select Terminal.

The first thing we need to do next is identify hard drive with NTFS file system that we want to repair. If we only have one hard drive without any partitions, the drive will be sda ​​followed by a number. To make sure we use the following command to show all the units.

sudo fdisk -l

Linux drives

Once we have identified the drive we want to repair, we install the ntfs-3g packages to repair the hard drive with the NTFS file system, using the following command

sudo apt-get install ntfs-3g

To repair Windows NTFS drive, we will use the following command

sudo ntfsfix /dev/sda1

repair ntfs disk from linux

If the drive to repair is sda2 or sdb1, we must use this name on the top line instead of sda1.

Related Articles