Find duplicate files on linux server Get link Facebook X Pinterest Email Other Apps March 13, 2011 find -not -empty -type f -printf “%s\n” | sort -rn | uniq -d | xargs -I{} -n1 find -type f -size {}c -print0 | xargs -0 md5sum | sort | uniq -w32 --all-repeated=separate OR fdupes -r ./folder > duplicates_list.txt Read more
Linux server - memory usage by process group. Get link Facebook X Pinterest Email Other Apps March 10, 2011 ps aux | awk '{print $4"\t"$11}' | sort | uniq -c | awk '{print $2" "$1" "$3}' | sort -nr Read more