If you only have just those two file systmes, / and /boot, then chances
are that the log files are big.
1) Check under /var/log
cd /var/log
ls -l
Check what big files you have there.
2) Check for unread email under /var/spool/mail or /var/mail
cd /var/spool/mail
ls -l
remove big email files.
3) Check what directories are using more space with:
cd /
du -sk * | more
It will show you how many KB each directory under / is using.
Then cd to each one and check again with du -sk * to see how much
space the subdirectories are using.
Then, you can isolate the file(s) that are using big space.
Next time, create a separate file system for /var.
GZS
Chuck Martin wrote:
On Mon, Nov 22, 2004 at 08:00:42AM -0800, R Parker
wrote:
My hda1 partition is becoming %100 used and I
don't
know why. This began happening after a system lockup
where I had to power cycle. I made about 9.7Gig of
space available on the drive but after another lockup
and power cycle the drive is %100 used again.
[studio@stepdaddy studio]$ df -H
Filesystem Size Used Avail Use% Mounted
on
/dev/hda2 38GB 36GB 118MB 100% /
/dev/hda1 104MB 21MB 79MB 21% /boot
If you have a lot of small files on the disk somewhere, maybe you ran
out of inodes. Try "df -i" to see what percentage of inodes are still
available for use. If you've used them all up, I don't think you can
create more without recreating the filesystem with mke2fs, unfortunately.
Chuck