Web Hosting Talk







View Full Version : Space left on server


clocker1996
12-07-2001, 02:35 AM
How can i search for files that are 100mb or bigger, the space on my server is really getting close to 0mb

bobcares
12-07-2001, 05:11 AM
I think this should work.
find / * -size 104857600k

Have a great day :)

regards
amar

davidb
12-09-2001, 06:11 PM
hey, there are some better ways, I like doing du and sort


du -h / | sort > /root/size.txt

This will print out all the files and folder sizes, also you can specify a folder and do all its contents

CagedTornado
12-10-2001, 04:23 AM
I like 'df'.

df -h

should work.

Dan