partition full warning

olanjouw

Verified User
Joined
Jan 9, 2005
Messages
9
Hi,

i get a message in DA about a full partition.
Unfortunately i can't figure out how to solve this.

df -h is giving me this:

# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_server-lv_root
47G 43G 1.6G 97% /
tmpfs 499M 0 499M 0% /dev/shm
/dev/vda1 485M 49M 411M 11% /boot

any ideas?

thanks
 
It says / is 97% full. You will have to find out where files being used are that you dont need and remove them.

You can use the "du" command to see where usage is the most.

Code:
cd /
du -h --max-depth=1 .
 
Back
Top