if you get "Disk quota exceeded", then you like know what happened with your folders
$find . -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n
$du
$df
woks too
references:
[1] http://www.codecoffee.com/tipsforlinux/articles/22.html
Software Developer, Programming, Web resources and entertaiment. Desarrollo de software, programación, recursos web y entretenimiento.
#!/bin/bash iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8069 iptables -t nat -A PREROUTING -i eth0 -p tc...