

Naturally, it would be more practical if dupeGuru wasn’t split into three editions – after all, most users love one-stop solutions. The official dupeGuru user guide is helpful and clearly written, so you can rely on it if you ever get stuck. The results can be re-prioritized (so the files listed as dupes become references) and sorted according to various criteria like modification date and size. If you’re interested in differences between duplicate files, toggle Delta Values. Select files by ticking the checkbox or clicking their name you can select all or multiple files using keyboard shortcuts (hold Shift/Ctrl and click on desired files). You can manage duplicate files directly from dupeGuru – the “Actions” menu shows everything you can do. The toolbar displays basic information, and you can see more about every file if you select it and click the “Details” button. When dupeGuru finds duplicates, a new window opens with reference files colored in blue and their duplicates listed below. Apple fans will love the fact that dupeGuru supports iPhoto and Aperture libraries and can manage iTunes libraries. You can also save search results to work on them later. Conversely, “Filter Hardness” doesn’t apply when you perform a “Contents” scan.ĭupeGuru can ignore small files and links (shortcuts) to a file, and lets you use regular expressions to further customize your query. In Music edition, you can analyze “Fields,” “Tags” and “Audio content.” Some settings depend on the scan type: “Word weighting” and “Match similar words” work only when you search for file names. Picture edition offers comparison by EXIF timestamp and “Picture blocks” – a time-consuming option that divides each picture into a grid and calculates the average color for every tile. “Scan Type” varies across dupeGuru editions in Standard, you can compare files and folders by contents and filename. If you care about file organization, you can easily find and remove duplicate files either via the command line or with a specialized desktop app. Before clicking “Scan,” check the “View -> Preferences” dialog to ensure that everything is properly set up. Setting a folder state to “Reference” means that other folders’ contents are compared to it. To search for duplicates, first add some folders by pressing the “+” button.

#PROGRAMS LIKE DUPEGURU FOR WINDOWS 10 INSTALL#
Sudo apt-get update sudo apt-get install dupeguru

#PROGRAMS LIKE DUPEGURU FOR WINDOWS 10 DOWNLOAD#
Windows and OS X users can download the installation files from the official website, and Ubuntu users can pull dupeGuru from the repository: It’s designed to find duplicate files based on multiple criteria (file names, file size, MD5 hashes) and uses fuzzy-matching to detect similar files. Employ dupeGuruĭupeGuru is a cross-platform application that comes in three editions: Standard (SE), Music and Picture. If you prefer to manage your files in an application that offers more options at once, the next solution might suit you. Note that this command doesn’t automatically remove duplicates – it only outputs a list, and you can delete files manually if you want. Uniq -w32 -all-repeated=separate – compares the first 32 characters of MD5 hashes and prints those which are duplicates.

Xargs -0 md5sum | sort | – sorts the MD5 hashes of scanned files. Find -not -empty -type f -printf "%s \n" | sort -rn | uniq -d | xargs -I c -print0 – prints only duplicate lines.
