On Sun, Aug 11, 2013 at 1:41 PM, TonyXue <<a href="mailto:tonyxsuper@live.com">tonyxsuper@live.com</a>> wrote:<br>><br>> [...]<br>> It seems that I've run out of space. But my VPS comes with 35GB disk space and it shouldn't be used up so fast. So how to deal with it?<br>

> If I do run out of space,any advice for deleting the old files of Tor? Are there any files created by Tor are not useful anymore and can be deleted?<div><br></div><div>Assuming you're running a *nix system on your VPS, what does running</div>

<div>df -h</div><div>say?</div><div><br></div><div>Additionally, you can try getting a list of largest directories/files on your VPS, like so:</div><div>sudo -s</div><div>cd /</div><div>for i in G M K; do du -ah | grep [0-9]$i | sort -nr -k 1; done | head -n 1000 | tac</div>

<div><br></div><div>or just run the latter on your home directory (and don't use sudo in that case, of course.)<br><br></div><div>Kostas.</div>