Remove Duplicates in Linux

I knew I could use fdupes to identify the dupes, but I wanted to replace them with hardlinks. I’ve seen many bash scripts that pipe the output from fdupes -r to view them. On newer distros, Ubuntu 12.04, fdupes has a -L option that will replace the duplicates with hardlinks.

 apt-get install fdupes 
 fdupes -r -L /marketing 

On older versions of Ubuntu 10.04 the -L option does not exist. I grabbed and compiled a newer version of fdupes from this repository to support the -L option.

Zack

I love learning new things and trying out the latest technology.

You may also like...

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.