Yep, I did that, and there are a few, but they are tiny. I think the files are on the device, but spread out over the shares... If that makes sense? I am trying to find directory in / or /home that has a large number of files and will try to locate the one that is causing all these problems... It will take a while because I'm not as fluent with the Linux command-line. But I guess this is how you get good at it! I found this command that should show me large numbers of files:
Code: Select all
sudo find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n
I'm guessing this will take all night...