Live data from Hacker News

Fdupes: A tool to de-duplicate files

github.com

1–10 of 14 posts

Re: Fdupes: A tool to de-duplicate files

#3
I used this when I was working on a product that used automated tests to upload files repeatedly during the day. The volume of test files was so great that it continually put pressure on the storage -- more pressure than the uploads from the actual users.

Fortunately the uploads were from a set of a few dozen static files, and de-duplicating the data via fdupes was able to drop disk usage by a factor of 20-50x.

Re: Fdupes: A tool to de-duplicate files

#7

Is this multiplatform? I think it's interesting how many projects forget to mention what operating system they target.

I found myself asking the same thing, and ended up finding a Python program:

http://www.pythoncentral.io/finding-duplicate-files-with-pyt...

I plan on giving it a whirl, to help me clean up my backup drive.

Re: Fdupes: A tool to de-duplicate files

#10
I personnally use fdupes.pl:

http://www.perlmonks.org/?node_id=85202

Tested on many millions of files, works like a charm (though it can run out of memory on a 32 bits machine). I'm using the enhanced version here: http://www.perlmonks.org/?node_id=1099194 which has an autodelete flag and prudently ignore symlinks.

Post reply on HN