: Simple but quick : How can I Check how much free space I have on my hard Drive on a system : running RH9.
The df -h command will give you a quick overview of the partitions on your system and how much space is used/free on each.. If you want to look at what dirs are using the most space on your system, a cool command for that is du -cshx * 2>/dev/null run from the / dir.. It will output something similar to the following: [EMAIL PROTECTED] /]# du -cshx * 2>/dev/null 5.6M bin 1.5M boot 86k dev 11M etc 1.0G home 512 initrd 5.5k install 26M lib 2.5k media 4.5k mnt 152M opt 0 proc Hope this helps, Bob ____________________ BYU Unix Users Group http://uug.byu.edu/ ___________________________________________________________________ List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list
