Install 'Fdupes' To Find Duplicate Files on Ubuntu
Do you like this story?

Fdupes Installation
Launch the terminal and issue this command:
sudo apt-get install fdupes
Fdupes Use
Here is an example of how to use Fdupes to find duplicate files inside a directory and its all sub-directories:
fdupes -r folder
Replace 'folder' with the name of the folder you want to scan. The '-r' option is used to force fdupes to scan all files stored in a directory and sub-directories.
To compare two directories with fdupes, run, simply, this command:
fdupes -r folder1 folder2
Sumber: