![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Root directory full, system does not boot | gnanavvk | UNIX for Dummies Questions & Answers | 1 | 05-30-2007 04:34 PM |
| Full file system? | meyerder | SUN Solaris | 0 | 05-13-2006 08:44 AM |
| Root file system is 82% full | Ajwat | SUN Solaris | 2 | 09-14-2005 10:07 AM |
| root file system full | owls | Filesystems, Disks and Memory | 1 | 04-15-2003 06:04 AM |
| Full File System | Breen | UNIX for Advanced & Expert Users | 8 | 10-15-2002 11:12 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hi All,
The root file system of the HP-UX serevr I use is showing as 100% full. It has a disk space of ~524MB. When I add up the sizes of all the files and directories (using du -sk) , except mount points, it came up to 237MB. But when I bdf it still shows 100% full Can anyone help please Thank You |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
can you please post bdf and du -sk o/p. may be there is something you are missing.
|
|
#3
|
|||
|
|||
|
the bdf output:
Filesystem kbytes used avail %used Mounted on /dev/vg00/lvol3 524288 524224 64 100% / /dev/vg00/lvol1 311296 220144 90472 71% /stand /dev/vg00/lvol8 4718592 2960864 1753224 63% /var /dev/vg00/lvol7 4866048 2640600 2208128 54% /usr /dev/vg00/lvol4 10240000 4814864 5382984 47% /tmp /dev/vg00/lvol6 3637248 3044224 588408 84% /opt /dev/vg00/lvol5 5128192 2257224 2864344 44% /home /dev/vg00/lvol9 20480000 11255739 8647795 57% /app/oracle 192.168.1.3:/bscs1 50057216 39956672 9486576 81% /bscs 192.168.1.3:/bscs1/WORK1 134766592 115458112 18519904 86% /bscs/WORK /dev/vgora01/lvol2 20316160 19421571 838744 96% /oracle/oradata/u02 /dev/vgora01/lvol1 20316160 19931394 360781 98% /oracle/oradata/u01 /dev/vgora01/lvol3 20316160 16839322 3259599 84% /oracle/oradata/u03 /dev/vgora01/lvol4 20316160 18176006 2006457 90% /oracle/oradata/u04 /dev/vgora01/lvol6 20316160 18354830 1838813 91% /oracle/oradata/u06 /dev/vgora01/lvol5 20316160 13402452 6481669 67% /oracle/oradata/u05 /dev/vgora01/lvol7 20316160 17667913 2482780 88% /oracle/oradata/u07 /dev/vgevabscsnew/lvol1 104841216 81088350 22268824 78% /bscs/bscsuat/environments/WBSCSU02 results of the du -sk : (numbers in 1024 blocks): .ICEauthority 40 .TTauthority 8 .VRTSob 56 .Xauthority 8 .dt 1176 .dtprofile 8 .gpmhp-wbscsp01 40 .hh 0 .history 8 .java 0 .lttreg 8 .mozilla 3680 .mozilla-license 8 .profile 8 .rhosts 8 .sgmgr 32 .sh_history 0 .ssh 8 .sw 456 BSCSNEW 0 CDROM 0 DATA-PROTECTOR1336 MANPATH 0 adviser.out 0 bdf_p01_20051009.txt 8 bin 0 bscs1 0 cdrom 0 dev 120 devnull 0 devttyp1 0 disk_info 8 etc 114512 export` 8 lib 0 lost+found 0 lp 8 mapfile 8 mountcd 8 net 0 null 24 sbin 112320 vg04 0 vgtemplvol1 0 wbscsp01.lvmtab 8 Total 237020 Results for the du -sk for mount points: stand 211640 var 2925392 usr 2615496 usr 2615496 tmp 4776296 opt 3016920 home 2230464 app 11210436 bscs 39956672 oracle 123813168 |
|
#4
|
|||
|
|||
|
process writing to the filesystem
The issue could be because a file to which a process was writing got deleted, but the process is till running. Since there is no entry in the directory the
Code:
du -sk Try using lsof/fuser to find out the process still writing to the filesystems and then kill the process. Code:
lsof mount_point fuser -d mount_point |
|||
| Google The UNIX and Linux Forums |