Install and Use TestDisk Data Recovery Tool in Linux
TestDisk is a free and opensource, command-line data recovery tool that is used to recover data from deleted or lost partitions. Further, you can use it to revive non-bootable partitions which can be caused by factors such as accidental deletion of partition tables, and malware attacks to mention a few.
The command-line software was written in C programming languages by Christophe Granier and licensed under the GNU/GPLv2 license. TestDisk is a cross-platform tool and runs on almost any desktop operating system: Linux, Windows, macOS, FreeBSD, OpenBSD, and even NetBSD. It’s easy to use and requires no installation whatsoever.
What Can TestDisk do?
TestDisk is a powerful, and lightweight software tool that comes with a myriad of data recovery applications as outlined below:
- TestDisk is able to repair a corrupt or damaged partition table.
- It can seamlessly recover a deleted disk partition.
- It restores files from Windows filesystems such as NTFS, FAT, FAT32, exFAT and ext2 Linux filesystem.
- It can copy files from deleted or corrupt Windows filesystems such as NTFS, FAT32, and exFAT and Linux partitions (ext2, ext3, and ext4).
- TestDisk can recover and rebuild the NTFS, FAT32 and FAT16 boot sectors from their backups.
- TestDisk can also repair corrupt FAT32 tables as well as the MFT by riding with the help of the MFT mirror.
In this article, we will show you how to install TestDisk data recovery utility to recover an unbootable partition on Linux.
How to Install TestDisk on Linux
Install TestDisk on Debian and Ubuntu
To start off, update the system packages and install TestDisk as shown.
$ sudo apt update $ sudo apt install testdisk
To verify that Testdisk is installed and display more information by running the following dpkg command.
$ sudo dpkg-l testdisk
Install TestDisk on RHEL and CentOS
To install TestDisk, first enable EPEL repository and then install TestDisk as shown.
------------ On RHEL/CentOS 7 ------------ # yum install epel-release # yum update # yum install testdisk ------------ On RHEL/CentOS 8 ------------ # yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm # yum update # yum install testdisk
To verify that Testdisk is installed and display more information about the TestDisk tool run the following rpm command.
# rpm -qi testdisk
Install TestDisk on Fedora and Arch Linux
For Fedora systems run.
$ sudo dnf install testdisk
For Arch Linux run:
$ sudo pacman -S testdisk
If no suitable package is found for your Linux distribution, download TestDisk from its official site.
How to Run and Use TestDisk in Linux
Since testdisk is run from the command line, run the command below to display the partitions on your system.
# testdisk /list
Now, assume your Linux partition table is lost or corrupt. To restore the Linux partition using TestDisk first run.
# testdisk
Select ‘Create‘ and hit ENTER. This will display a list of partitions to choose from. In your case, your partitions will be different from what is displayed below.
Next, select the ‘Proceed‘ at the bottom to go on to the next options.
Your system will automatically detect the partition table type you are using. In my case it is ‘Intel‘. Hit ENTER to continue.
In the next section, select the ‘Analyse‘ option for the testdisk utility to probe your partition structure.
If No bootable partition is found on the Disk, the error below will be printed.
Partition Start End Size in sectors No partition is bootable *=Primary bootable P=Primary L=Logical E=Extended D=Deleted [Proceed ]
Select ‘Proceed‘ option.
A list of available partitions will be displayed on the next screen. Hit ‘ENTER‘ to continue to the next screen.
Select the ‘write‘ option on the next screen. This option will trigger TestDisk to write on the partition table.
Next, press Y to confirm as shown below.
Write partition table, confirm ? (Y/N)
TestDsk will prompt you to reboot your system for the changes to take effect.
You will have to reboot for the change to take effect.
Select the OK option.
On the next screen select ‘Quit‘ to leave the menu and finally select ‘Quit‘ again to exit the TestDisk program.
All you have to do now is to reboot your system. If all went well, the new partition table should allow the system to boot normally.
Conclusion
TeskDisk is an ideal tool when you want to unerase data from corrupt partitions or revive unbootable partitions and get them to boot as expected. It supports a vast range of file systems and can work in any operating system: from Windows to Linux.