Music Library Cleanup with fdupes

Summary

Show you how to remove duplicates from your music library collection on a Linux / Ubuntu computer. The software used in this tutorial is called fdupes.

Video

Commands Used

The commands ran in this video are as follows: du -sh *

sudo apt-get update 
sudo apt-get install fdupes

find . -name ".ini" -exec rm {} ;
find . -name ".dat" -exec rm {} ;
find . -name "Thumbs.db" -exec rm {} ;

fdupes -r -1 -S -d -N [music directory]

find . -type d -empty -print -exec rm -r {} ;

du -sh *

If you have comments or questions about the video, please leave them on the video's YouTube page.

Updated: 2021-06-13 | Posted: 2018-07-07
Author: Kenny Robinson