df -h show 101% used

dannygoh

Verified User
Joined
Feb 9, 2004
Messages
391
Location
Malaysia
Hello,

i run a backup on my DA server and it always failed. I check the usage in DA and still have 30% free space. when i type df -h in putty, it show 101% used. How can it be. is my server is failing on me?

Code:
[root@get backup]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda3              78G  5.3G   69G   8% /
/dev/sdb1             452G  -64Z  435G 101% /backup
/dev/sda1             251M   42M  196M  18% /boot
none                  2.5G     0  2.5G   0% /dev/shm
/dev/sda6             294G   77G  202G  28% /home
/dev/sda2              78G   36G   39G  48% /var
/var/tmpMnt           985M  181M  754M  20% /tmp
 
here u go

Code:
[root@get ~]# cat /etc/fstab
# This file is edited by fstab-sync - see 'man fstab-sync' for details
LABEL=/			/			ext3	defaults,usrquota,grpquota	1 1
LABEL=/backup           /backup                 ext3    defaults        1 2
LABEL=/boot             /boot                   ext3    defaults        1 2
none                    /dev/pts                devpts  gid=5,mode=620  0 0
none                    /dev/shm                tmpfs   noexec,nosuid        0 0
LABEL=/home		/home			ext3	defaults,usrquota,grpquota	1 2
none                    /proc                   proc    defaults        0 0
none                    /sys                    sysfs   defaults        0 0
LABEL=/var              /var                    ext3    defaults        1 2
LABEL=SWAP-sda5         swap                    swap    defaults        0 0
/var/tmpMnt             /tmp                    ext2    loop,noexec,nosuid,rw  0 0
/dev/hda                /media/cdrom            auto    pamconsole,exec,noauto,managed 0 0
 
The df -h command will always show you the current status of the drive's available capacity. You should try to figure out what you may safely delete.
 
Back
Top