157

I have a largish music collection and there are some duplicates in there. Is there any way to find duplicate files. At a minimum by doing a hash and seeing if two files have the same hash.

Bonus points for also finding files with the same name apart from the extension - I think I have some songs with both mp3 and ogg format versions.

I'm happy using the command line if that is the easiest way.

Hamish Downer
  • 19,181

12 Answers12

178

fdupes

I use fdupes for this. It is a commandline program which can be installed from the repositories with sudo apt install fdupes. You can call it like fdupes -r /dir/ect/ory and it will print out a list of dupes. fdupes has also a README on GitHub and a Wikipedia article, which lists some more programs.

Pablo Bianchi
  • 15,657
qbi
  • 19,125
  • 12
    It also has a "-d" option that lets you choose which copy you want to keep, and deletes the other ones (or you can keep all of them if you want). – Matthew Crumley Sep 08 '10 at 20:59
  • How can I use the -d option to fix my problem here – John McKean Pruitt Apr 03 '12 at 22:07
  • Is it possible for fdupes to list duplicate folders instead of duplicate files? – Anderson Green Sep 01 '12 at 22:31
  • No, I don't think so. – qbi Oct 31 '12 at 20:46
  • 2
    Can you explain in more detail how to delete all duplicates (leaving only a single copy each file) in a recursive directory tree? I want to do this automatically, that is, without having to specify each time which file to keep. It should just select one of the duplicates. – a06e Mar 10 '15 at 18:28
  • I added little more explanation about the command here http://stackoverflow.com/a/31630565/54964 I would like to have similarly some static file which would remember my early wishes so I do not next time say which duplicates not to remove. – Léo Léopold Hertz 준영 Jul 25 '15 at 20:13
  • 12
    fdupes -r . -d -N should save the first instance and delete the dupes. I just successfully cleared a single folder using fdupes . -d -N non recursively – Simon B Jun 15 '16 at 19:48
  • This didn't seem to work for all msuic files. Only some of them. Not sure why? – Daniel Sep 26 '20 at 02:36
71

List of programs/scripts/bash-solutions, that can find duplicates and run under nix:

  1. dupedit: Compares many files at once without checksumming. Avoids comparing files against themselves when multiple paths point to the same file.
  2. dupmerge: runs on various platforms (Win32/64 with Cygwin, *nix, Linux etc.)
  3. dupseek: Perl with algorithm optimized to reduce reads.
  4. fdf: Perl/c based and runs across most platforms (Win32, *nix and probably others). Uses MD5, SHA1 and other checksum algorithms
  5. freedups: shell script, that searches through the directories you specify. When it finds two identical files, it hard links them together. Now the two or more files still exist in their respective directories, but only one copy of the data is stored on disk; both directory entries point to the same data blocks.
  6. fslint: has command line interface and GUI.
  7. liten: Pure Python deduplication command line tool, and library, using md5 checksums and a novel byte comparison algorithm. (Linux, Mac OS X, *nix, Windows)
  8. liten2: A rewrite of the original Liten, still a command line tool but with a faster interactive mode using SHA-1 checksums (Linux, Mac OS X, *nix)
  9. rdfind: One of the few which rank duplicates based on the order of input parameters (directories to scan) in order not to delete in "original/well known" sources (if multiple directories are given). Uses MD5 or SHA1.
  10. rmlint: Fast finder with command line interface and many options to find other lint too (uses MD5), since 18.04 LTS has a rmlint-gui package with GUI (may be launched by rmlint --gui or from desktop launcher named Shredder Duplicate Finder)
  11. ua: Unix/Linux command line tool, designed to work with find (and the like).
  12. findrepe: free Java-based command-line tool designed for an efficient search of duplicate files, it can search within zips and jars.(GNU/Linux, Mac OS X, *nix, Windows)
  13. fdupe: a small script written in Perl. Doing its job fast and efficiently.1
  14. ssdeep: identify almost identical files using Context Triggered Piecewise Hashing
N0rbert
  • 99,918
v2r
  • 9,547
65

FSlint has a GUI and some other features. The explanation of the duplicate checking algorithm from their FAQ:

1. exclude files with unique lengths
2. handle files that are hardlinked to each other
3. exclude files with unique md5(first_4k(file))
4. exclude files with unique md5(whole file)
5. exclude files with unique sha1(whole file) (in case of md5 collisions).

fslint installation instructions

Kalle Richter
  • 6,180
  • 21
  • 70
  • 103
Dominik
  • 759
  • 12
    Thanks. Note that the command name is "fslint-gui", and the command line tools are not in $PATH by default - they are in /usr/share/fslint/fslint. I was confused when I didn't get help on which package it was in by just running fslint (via /usr/lib/command-not-found). – nealmcb Nov 19 '11 at 18:59
  • 1
    @nealmcb If using sudo apt-get install fslint, the installation currently does put fslint-gui into the path and so I can run it from anywhere by just typing fslint-gui. You can find where fslint-gui lives by typing which fslint-gui (it looks like a Python script). – user29020 Nov 25 '14 at 19:29
  • 3
    Except that it has no installation candidate on 20.04. :-( – John Feb 28 '21 at 02:11
7

If your deduplication task is music related, first run the picard application to correctly identify and tag your music (so that you find duplicate .mp3/.ogg files even if their names are incorrect). Note that picard is also available as an Ubuntu package.

That done, based on the musicip_puid tag you can easily find all your duplicate songs.

  • I just updated the metadata for my library with Picard. I then used fdupes -r -d -N to find and delete duplicates. But it's still not identifying many duplicates. How exactly did you do this with the musicip_puid? – Daniel Sep 26 '20 at 04:07
  • It's been years since then, and I'm afraid I haven't followed picard; my music library has been safely archived, a few select songs are included in my phone's media, and all other needs are covered by streaming services. I can only say I remember that the puid did help me locate similar sounding songs. I'm sorry I currently can't help any more. – ΤΖΩΤΖΙΟΥ Sep 26 '20 at 09:54
6

Another script that does this job is rmdupe. From the author's page:

rmdupe uses standard linux commands to search within specified folders for duplicate files, regardless of filename or extension. Before duplicate candidates are removed they are compared byte-for-byte. rmdupe can also check duplicates against one or more reference folders, can trash files instead of removing them, allows for a custom removal command, and can limit its search to files of specified size. rmdupe includes a simulation mode which reports what will be done for a given command without actually removing any files.

girardengo
  • 4,965
  • 1
  • 26
  • 31
4

I use komparator - sudo apt-get install komparator (Ubuntu 10.04+ ) - as GUI-tool for finding duplicates in manual mode.

N0rbert
  • 99,918
3

Have you tried

finddup

or

finddup -l

I guess it works fine.

blade19899
  • 26,704
xerostomus
  • 990
  • 9
  • 20
2

jdupes

I found jdupes very easy and extremely fast.

jdupes is a program for identifying and taking actions upon duplicate files such as deleting, hard linking, symlinking, and block-level deduplication (also known as "dedupe" or "reflink"). It is faster than most other duplicate scanners. It prioritizes data safety over performance while also giving expert users access to advanced (and sometimes dangerous) features.

# Search a single directory:
jdupes path/to/directory

Search multiple directories:

jdupes directory1 directory2

Search all directories recursively:

jdupes --recurse path/to/directory

Search directory recursively and let user choose files to preserve:

jdupes --delete --recurse path/to/directory

Search multiple directories and follow subdirectores under directory2, not directory1:

jdupes directory1 --recurse: directory2

Search multiple directories and keep the directory order in result:

jdupes -O directory1 directory2 directory3

EXclude files over 1M, sumarize info, recursive

jdupes -X size+=:1000k --summarize --recurse ~

Pablo Bianchi
  • 15,657
2

For Music related duplicate identification and deletion, Picard (open source) by http://musicbrainz.org/ and Jaikoz (privative) are the best solutions. Jaikoz I believe automatically tags your music based on the data of the song file. You don't even need the name of the song for it to identify the song and assign all metadata to it. Although the free version can tag only a limited number of songs in one run, but you can run it as many times as you want.

Pablo Bianchi
  • 15,657
Yathi
  • 199
1

dupeGuru has a dedicated mode for music. It is a cross-platform GUI program and, as of today (February 2021), it is in active development, although it is unclear which releases work on which systems. Check its documentation.

Diego V
  • 410
0

Now that fslint is no longer supported, I've switched to fclones. As requested, it matches by hash, and can output a list, or replace files with hard or soft links.

I've been using it like this to replace duplicate files with hard links:

fclones group <dir/to/recursively/search> | fclones link
craq
  • 263
  • 2
  • 16
0

If you're fine with a GUI tool instead, I can highly recommend Czkawka. You can very easily find duplicate files, filter out the files you want (they are grouped by default) and delete the files you do not need. Also search is very fast and cached, so the next time you run it, it will be even faster.

demo video

https://github.com/qarmin/czkawka

You can easily install it on any distro, e.g. get it here on Flathub.

And if you insist on a CLI tool, the software itself also has/can be run as a CLI tool.

Also, it also seems to work on Windows or so.

(Reposted as from the similar question on SE Unix.)

rugk
  • 913
  • 8
  • 11