View Single Post
  #2  
Old 05-03-2008, 01:44 PM
AndMetal
Developer
 
Join Date: Mar 2007
Location: Ohio
Posts: 648
Default

After doing some searching, I found this website that says you can run this command to search for large files:
Code:
find / -type f -size +100000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
Specifically, that will search for files larger than 100000 KB (~100 MB).

For me, this yielded the following:
Code:
/var/lib/mysql/ibdata1: 114M
/proc/kcore: 897M
/home/eqemu/source/EQEmu-0.7.0-1090/utils/defaults/logs/eqemu_debug_zone.log: 361M
/home/eqemu/source/EQEmu-0.7.0-1090/utils/defaults/logs/zone-dynamic_26.log: 185M
/home/eqemu/common/Maps.tar.gz: 302M
/home/wowemu/source/src/game/libmangosgame.a: 132M
Hope this helps.
__________________
GM-Impossible of 'A work in progress'
A non-legit PEQ DB server
How to create your own non-legit server

My Contributions to the Wiki
Reply With Quote