Ok hivemind, I have to check about 9 TB of files for duplicates. I SSH into the server (so CLI only), running Debian. I've tried fdupes, but it takes absolutely forever, sometimes timing out late in the process. What other options are there? I don't necessarily need to check on SHA256 checksum level, file size is fine. #linux #cli
@infonauten har du kigger her: https://alternativeto.net/software/fdupes/
@chmoensted Jeg har kigget lidt, det var mere hvis der var nogen, der lige bum vidste hvad jeg skulle gøre.
@infonauten jeg plejer at bruge dupeGuru, men det er desværre er gui program...
@chmoensted mest .mkv og andre videoformater.
@infonauten If file size is really enough:
find /foo/bar -exec stat -f "%z %N" {} \;
and run sort(1) on the output?
@holsta yeah, that might do it, thanks.
@infonauten hvilken type filer? Godt og blandet ?