The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



Thread: Quota Problem
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 01-30-2008
Smiling Dragon's Avatar
Smiling Dragon Smiling Dragon is offline
Disorganised User
 
Join Date: Nov 2007
Location: New Zealand
Posts: 709
I would guess that you've got files elsewhere still - or that the filesystem hasn't performed it's clean up yet.

You can check the former by running a huge find over the whole system:
Code:
find / -type f -user <you> 2> /dev/null
The latter can be checked by looking at the output from df -k on the filesystem your home dir is mounted on, has it reduced by the amount of stuff you deleted?
Reply With Quote